-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yaml
98 lines (89 loc) · 2.19 KB
/
mkdocs.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
site_name: pyreadwise
site_description: Python module to use the readwise api
site_author: rwxd
site_url: https://rwxd.github.io/pyreadwise
dev_addr: 0.0.0.0:8000
repo_name: "pyreadwise"
repo_url: "https://github.com/rwxd/pyreadwise"
docs_dir: "./docs"
edit_uri: "edit/source/docs/content/"
# https://squidfunk.github.io/mkdocs-material/
theme:
name: "material"
palette:
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
- scheme: default
primary: teal
accent: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
icon:
logo: material/code-braces-box
# logo: material/pine-tree
# favicon: assets/page/favicon-32x32.png
language: en
include_sidebar: true
features:
- content.code.annotate
- navigation.tabs
- toc.integrate
feature:
tabs: false
i18n:
prev: "Previous"
next: "Next"
font:
text: Inter
code: Fira Code
copyright: "Copyright © 2023 rwxd"
plugins:
- search
- material-plausible
- mkdocstrings:
handlers:
python:
import:
- https://docs.python-requests.org/en/master/objects.inv
options:
docstring_style: google
docstring_section_style: "table"
merge_init_into_class: True
line_length: 100
members_order: 'source'
show_signature_annotations: True
separate_signature: True
markdown_extensions:
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
guess_lang: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: "⚑"
nav:
- "Home":
- "Quickstart": 'index.md'
- "Advanced Usage": "advanced-usage.md"
- "Readwise API": readwise-api.md
- "Readwise Reader API": readwise-reader-api.md
- "Models": models.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/rwxd
analytics:
provider: plausible
domain: rwxd.github.io/pyreadwise
src: "https://plausible.chaops.de/js/script.js"