-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yaml
61 lines (57 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
site_name: sparkdantic
repo_url: https://github.com/mitchelllisle/sparkdantic
repo_name: mitchelllisle/sparkdantic
site_author: Mitchell Lisle
edit_uri: ""
theme:
name: "material"
font:
text: Raleway
palette:
- scheme: default
primary: blue grey
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue grey
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
icon:
logo: material/shimmer
repo: fontawesome/brands/github
features:
- content.code.annotate
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
nav:
- Home: index.md
- API : docs/
- Contributing: contributing.md
plugins:
- search
- gen-files:
scripts:
- docs/gen_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
watch:
- src/sparkdantic
handlers:
python:
options:
show_source: false
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- attr_list
- md_in_html
- admonition