-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
77 lines (70 loc) · 1.6 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
site_name: Helix Documentation
repo_name: helix
repo_url: https://github.com/dcvz/helix
site_description: "A library to facilitate porting your N64 software."
site_author: dcvz
site_url: https://dcvz.github.io/helix/
remote_branch: gh-pages
edit_uri: edit/main/docs/
copyright: 'Copyright © 2023 dcvz'
theme:
name: 'material'
logo: images/favicon.png
favicon: images/favicon.png
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- tabs
- instant
extra_css:
- 'css/app.css'
markdown_extensions:
- admonition
- smarty
- codehilite:
guess_lang: false
linenums: True
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- tables
plugins:
- search
extra:
# type is the name of the FontAwesome icon without the fa- prefix.
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/dcvz/helix
- icon: fontawesome/brands/twitter
link: https://twitter.com/dcvz
version:
provider: mike
nav:
- 'Overview': index.md
- 'Integration': integration.md
- 'Features': features.md