-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
69 lines (64 loc) · 2.47 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
site_name: scp-machine
dev_addr: 127.0.0.1:8003
repo_url: https://github.com/ostis-ai/scp-machine
edit_uri: edit/main/docs/
extra_css:
- _assets/main.css
extra_javascript:
- _assets/main.js
nav:
- Home: index.md
- Quick Start: quick_start.md
- Build Instructions:
- Quick Start for Contributors: build/quick_start.md
- Build System: build/build_system.md
- CMake Flags: build/cmake_flags.md
- Development:
- Contributing Guide: CONTRIBUTING.md
- Codestyle Guide: https://ostis-ai.github.io/sc-machine/dev/codestyle/
- License: https://github.com/ostis-ai/scp-machine/blob/main/COPYING.MIT
- Changelog: changelog.md
plugins:
- search:
lang: en
separator: '[\s\-\.]+'
theme:
name: material
favicon: ostis-logo.png
logo: ostis-logo.png
palette: # Defines color schemes for light and dark modes
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant # Enables instant loading of pages
- navigation.tracking # Automatically focuses active section in sidebar
- navigation.tabs # Adds top-level sections as tabs
- navigation.sections # Renders top-level sections as groups in sidebar
- navigation.expand # Expands all collapsible sections by default
- navigation.top # Adds a "back to top" button
- search.suggest # Displays search suggestions
- search.highlight # Highlights search terms on result page
- content.action.edit # Adds links to edit doc files
- content.tabs.link # Shares link when clicking on a tab
- content.code.copy # Adds a copy button to code blocks
markdown_extensions:
- admonition # Allows creation of call-out boxes (e.g., notes, warnings)
- codehilite
- md_in_html # Allows Markdown syntax inside HTML blocks
- pymdownx.highlight: # Enhances code block highlighting
anchor_linenums: true
- pymdownx.inlinehilite # Enables inline code highlighting
- pymdownx.details # Allows creating collapsible elements
- pymdownx.superfences # Enables advanced fenced code blocks