-
Notifications
You must be signed in to change notification settings - Fork 26
/
mkdocs.yml
58 lines (58 loc) · 1.83 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
site_name: Nexodus Documentation
site_url: https://docs.nexodus.io
repo_url: https://github.com/nexodus-io/nexodus/
edit_uri: edit/main/docs/
theme:
# https://squidfunk.github.io/mkdocs-material
name: material
logo: assets/logo.png
favicon: assets/favicon.ico
features:
# Provide a link to a github edit page for each doc
- content.action.edit
# Provide a link to a github view page for each doc
- content.action.view
# Load the docs as a one-page app for instant loading a linnk
- navigation.instant
# Anchor tracking, auto update URL for currently viewed section
- navigation.tracking
# Put top level sections as tabs
- navigation.tabs
# Auto expand subsections of docs in the navigation tree
- navigation.expand
# Add a link back to the top
- navigation.top
# Adjust the ToC view to follow where you are in the doc
- toc.follow
# Auto complete search suggestions
- search.suggest
# Highlight search results
- search.highlight
# Add a share link for sharing a search + results
- search.share
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- footnotes
# Enable mermaid diagrams.
# https://squidfunk.github.io/mkdocs-material/reference/diagrams/
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
# The next 3 options enable admonitions (notes, warnings, etc.)
- admonition
- pymdownx.details
- pymdownx.superfences