forked from kevinheavey/anchorpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
56 lines (56 loc) · 1.32 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
site_name: AnchorPy
theme:
name: material
icon:
logo: material/anchor
favicon: img/anchor.svg
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
- tutorial.md
- testing.md
- comparison_with_anchor_ts.md
- examples.md
- cli.md
- api_reference.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'