-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
170 lines (155 loc) · 4.28 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
site_name: Django Napse Documentation
# site_url: https://go.napse-invest.com/visit/
repo_name: napse-invest/django-napse
repo_url: https://github.com/napse-invest/django-napse
copyright: MIT Licence
docs_dir: "docs/"
extra_css:
- assets/stylesheets/extra.css
- assets/stylesheets/api.css
- assets/stylesheets/docstring.css
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/NapseInvest
name: X
- icon: fontawesome/brands/linkedin
link: https://fr.linkedin.com/company/napse-investment
name: Linkedin
- icon: fontawesome/brands/discord
link: https://discord.com/invite/47gKBreSXa
name: Discord
- icon: fontawesome/brands/github
link: https://github.com/napse-invest/
name: Github
theme:
name: 'material'
custom_dir: theme
favicon: 'theme/assets/napse_logo_white.svg'
logo: 'theme/assets/napse_invest_logo_white.svg'
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/theme'
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:
- django_napse
- 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"
- How to guides:
- "sources/guides/exchange.md"
- "sources/guides/exchange_account.md"
- "sources/guides/space.md"
- "sources/guides/fleet.md"
- Reference:
- "sources/reference/bots.md"
- "sources/reference/connections.md"
- "sources/reference/exchanges.md"
- "sources/reference/fleets.md"
- "sources/reference/histories.md"
- "sources/reference/keys.md"
- "sources/reference/orders.md"
- "sources/reference/permissions.md"
- "sources/reference/spaces.md"
- "sources/reference/transactions.md"
- "sources/reference/wallets.md"
- API: "sources/api.md"
- Development:
- Contributing: "contributing.md"
- Security: "SECURITY.md"
- Coverage: coverage.md