-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmkdocs.yml
127 lines (102 loc) · 2.74 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
site_name: Express User Documentation
nav:
- Home: "index.md"
- Project Structure: "pages/project-structure.md"
- Configuration: "pages/configuration.md"
- Installing Express: "pages/installing-express.md"
- Routes & Routers: "pages/routes.md"
- Middleware: "pages/middleware.md"
- Troubleshooting: "pages/troubleshooting.md"
- Glossary: "pages/glossary.md"
repo_url: https://github.com/megankuo/Express-User-Documentation
repo_name: megankuo/Express-User-Documentation
markdown_extensions:
- toc:
toc_depth: 3
- attr_list
- footnotes
- admonition
- codehilite
- def_list
- pymdownx.critic:
mode: view
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
- pymdownx.keys
- pymdownx.details
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.smartsymbols
- pymdownx.tabbed
- pymdownx.highlight:
# linenums: true # Line numbering
linenums_style: pymdownx.inline
# use_pygments: false
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
theme:
name: material
features:
# - navigation.tabs
- navigation.sections
- navigation.top
- toc.integrate
icon:
repo: fontawesome/brands/git-alt
# 404 page
static_templates:
- 404.html
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: red
toggle:
icon: material/weather-night
name: Switch to light mode
# Necessary for search to work properly
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
icon:
logo: logo
# Plugins
plugins:
- search:
lang: en
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/highlight.min.js
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tables.js
- javascripts/config.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/default.min.css
- stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/megankuo/Express-User-Documentation
name: GitHub
copyright: Copyright © 2021 - Megan Kuo, Linda Nguyen, and Jamie Samuel