-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmkdocs.yml
53 lines (46 loc) · 1.1 KB
/
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
46
47
48
49
50
51
site_name: "ticktick-py"
site_description: "Unofficial TickTick API For Python 3"
site_url: "https://lazeroffmichael.github.io/ticktick-py"
repo_url: "/~https://github.com/lazeroffmichael/ticktick-py"
repo_name: "lazeroffmichael/ticktick-py"
nav:
- Overview: index.md
- Usage:
- Authorization: usage/oauth2.md
- API and Important Information: usage/api.md
- Tasks: usage/tasks.md
- Projects: usage/projects.md
- Tags: usage/tags.md
- Helpers: usage/helpers.md
- Changelog: changelog.md
- License: license.md
theme:
name: "material"
palette:
primary:
purple
features:
- navigation.instant
- toc.integrate
extra_css:
- css/mkdocstrings.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
setup_commands:
- import sys
- sys.path.append("ticktick")
watch:
- ticktick
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.tabbed
- pymdownx.superfences
- toc:
permalink: true