-
Notifications
You must be signed in to change notification settings - Fork 59
/
mkdocs.yml
64 lines (64 loc) · 1.56 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
site_name: AnchorPy
theme:
name: material
icon:
logo: material/anchor
favicon: img/anchor.svg
features:
- navigation.tabs
- navigation.top
palette:
- scheme: default
primary: lime
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
custom_dir: overrides
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.snippets
- meta
- pymdownx.tabbed:
alternate_style: true
repo_url: https://github.com/kevinheavey/anchorpy
repo_name: kevinheavey/anchorpy
site_url: https://kevinheavey.github.io/anchorpy/
plugins:
- mkdocstrings:
handlers:
python:
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
rendering:
show_root_heading: true
show_root_full_path: false
- search
nav:
- index.md
- Client Generator:
- clientgen/index.md
- Dynamic Client:
- dynamic_client/index.md
- dynamic_client/comparison_with_anchor_ts.md
- dynamic_client/examples.md
- dynamic_client/api_reference.md
- Testing:
- testing/index.md
- CLI Reference:
- cli/index.md
extra_css:
- css/mkdocstrings.css
- css/termynal.css
- css/custom.css
extra_javascript:
- 'https://unpkg.com/[email protected]/dist/mermaid.min.js'
- 'js/termynal.js'
- 'js/custom.js'