forked from drift-labs/driftpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
51 lines (51 loc) · 1.27 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: DriftPy
theme:
name: material
icon:
logo: material/chart-line
favicon: img/drift.png
palette:
- scheme: default
primary: deep-purple
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.snippets
- meta
- pymdownx.tabbed:
alternate_style: true
repo_url: https://github.com/drift-labs/driftpy
repo_name: drift-labs/driftpy
site_url: https://drift-labs.github.io/driftpy/
plugins:
- mkdocstrings:
handlers:
python:
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
- "!^T$"
- "!^get_clearing_house_state_account_public_key_and_nonce$"
rendering:
show_root_heading: true
show_root_full_path: false
show_if_no_docstring: true
- search
nav:
- index.md
- clearing_house.md
- clearing_house_user.md
- accounts.md
- addresses.md
extra_css:
- css/mkdocstrings.css
- css/custom.css