-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
150 lines (135 loc) · 3.36 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
site_name: Nango Documentation
repo_name: Grezy-Software/Nango
repo_url: https://github.com/Grezy-Software/Nango
copyright: MIT Licence
docs_dir: "docs/"
extra_css:
- assets/stylesheets/extra.css
- assets/stylesheets/api.css
extra:
social:
- icon: fontawesome/brands/twitter
link:
name: X
- icon: fontawesome/brands/linkedin
link:
name: Linkedin
- icon: fontawesome/brands/discord
link:
name: Discord
- icon: fontawesome/brands/github
link:
name: Github
theme:
name: 'material'
custom_dir: themes
favicon: ''
logo: ''
language: 'en'
palette:
# Palette toggle for light mode
- media: "prefers-color-scheme: light"
scheme: default
primary: teal
accent: teal
toggle:
# icon: material/toggle-switch
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Palette toggle for dark mode
- media: "prefers-color-scheme: dark"
scheme: slate
primary: teal
accent: teal
toggle:
# icon: material/toggle-switch-off-outline
icon: material/toggle-switch
name: Switch to light mode
custom_dir: 'docs/themes'
features:
- navigation.tabs
- navigation.tabs.stickyx
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.section
- content.code.annotate
# - toc.integrate
- toc.follow
- navigation.path
- navigation.top
- content.code.copy
- search.suggest
- content.tabs.link
- content.code.annotate
watch:
- docs
plugins:
- search
- autorefs
- inline-svg
# - coverage:
# page_name: coverage # default
# html_report_dir: htmlcov # default
- neoteroi.mkdocsoad:
use_pymdownx: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
heading_level: 3
# extensions:
# - docs/plugins/griffe_doclinks.py
show_source: false
allow_inspection: false
show_bases: false
show_root_heading: false
docstring_style: google
# docstring_section_style: list
# Signature
show_signature: true
separate_signature: true
show_signature_annotations: true
annotations_path: full
line_length: 80
markdown_extensions:
- toc:
permalink: true
- pymdownx.snippets:
- pymdownx.magiclink:
- attr_list:
- md_in_html:
- pymdownx.inlinehilite:
- pymdownx.superfences:
- pymdownx.keys:
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- codehilite:
use_pygments: true
noclasses: true
pygments_style: tango
- pymdownx.details:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
# line_spans: __span
nav:
- Home:
- Overview: "index.md"
# - Quickstart: "sources/quickstart.md"
- Nango:
- Types: "src/types.md"
- Development:
- Contributing: "contributing.md"
- Security: "SECURITY.md"