-
Notifications
You must be signed in to change notification settings - Fork 28
/
mkdocs.yaml
43 lines (43 loc) · 1.02 KB
/
mkdocs.yaml
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
site_name: solders
theme:
name: material
icon:
logo: material/anchor
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
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.snippets
- meta
- pymdownx.tabbed:
alternate_style: true
repo_url: https://github.com/kevinheavey/solders
repo_name: kevinheavey/solders
site_url: https://kevinheavey.github.io/solders/
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
- api_reference.md
extra_css:
- css/mkdocstrings.css