-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
49 lines (44 loc) · 1.2 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
site_name: C++ Sandbox
repo_url: https://github.com/rdnajac/cpp-sandbox
edit_uri: blob/main/docs/
site_description: A collection of C++ code snippets and examples.
site_author: Ryan D. Najac
copyright: Copyright © 2023–2024 <a href="https://rdnajac.tech">Ryan D. Najac</a>
theme:
name: material
features:
- content.code.copy
font:
code: JetBrains Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
markdown_extensions:
- github-callouts
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.arithmatex:
generic: true
extra_javascript:
- js/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- https://unpkg.com/katex@0/dist/katex.min.css
plugins:
- search
- macros:
render_by_default: false