-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
45 lines (35 loc) · 961 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Thanks https://realpython.com/python-project-documentation-with-mkdocs/#adapt-your-project-settings-file
# Thanks https://www.mkdocs.org/user-guide/configuration/
site_name: Wattpad
repo_url: https://github.com/TheOnlyWayUp/Wattpad-Py/
site_url: https://wattpad-py.readthedocs.io/en/latest/
site_author: TheOnlyWayUp
strict: true
theme:
name: "material"
favicon: "wattpad.svg"
plugins:
- mkdocstrings
- mkdocs-jupyter
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.snippets:
check_paths: true
watch:
- docs
- mkdocs.yml
- src
- README.md
nav:
- Home: index.md
- quickstart.ipynb
- Memory Efficiency and Caching: memory-efficiency.ipynb
- Synchronous and Asynchronous Usage: sync-and-async.ipynb
- API Reference:
- User: reference/user.md
- Story: reference/story.md
- Utilities: reference/utils.md
- Models:
- Models: reference/models.md
- Types: reference/model_types.md