-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
96 lines (82 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
site_name: Proxima
repo_name: in03/proxima
repo_url: https://github.com/in03/proxima
theme:
name: material
logo: images/proxima_icon.svg
favicon: images/proxima_icon.svg
icon:
repo: fontawesome/brands/git-alt
custom_dir: docs/overrides
nav:
- Code Reference: reference/poet
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.expand
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
nav:
- "My page": test.md
plugins:
- tags
- search
- mkdocstrings:
default_handler: python
handlers:
python:
setup_commands:
- import sys
- sys.path.append("src")
rendering:
show_source: true
- git-revision-date-localized:
enable_creation_date: true
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
watch:
- proxima
extra:
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/in03
- icon: fontawesome/brands/linkedin
link: https://au.linkedin.com/in/caleb-trevatt-16217b102
copyright: Copyright © 2019 - 2022 Caleb Trevatt
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
use_pygments: true
pygments_lang_class: true
extra_css:
- css/code_select.css