-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (58 loc) · 1.48 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
site_name: mkdocs-demo
site_author: ntno
repo_url: https://github.com/ntno/mkdocs-demo
edit_uri: edit/main/docs/
copyright: Copyright 2023 Natan Organick, All rights reserved
nav:
- Home: 'index.md'
- Troubleshooting: 'help.md'
- About:
- Index: 'about/index.md'
- Contributing: 'about/contributing.md'
- License: 'about/license.md'
- Release Notes:
- Index: 'about/release-notes/index.md'
- v1: 'about/release-notes/version-1.md'
- v2: 'about/release-notes/version-2.md'
- User Guide:
- Configuration: 'user-guide/configuration.md'
- Custom Themes: 'user-guide/custom-themes.md'
- Deployment: 'user-guide/deploying-your-docs.md'
- Styling: 'user-guide/styling-your-docs.md'
- Writing: 'user-guide/writing-your-docs.md'
markdown_extensions:
# Python Markdown
- attr_list
- def_list
- footnotes
- md_in_html
- meta
- toc:
permalink: "#"
permalink_title: Anchor link to this section for reference
# PyMdown Extensions
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.snippets:
base_path:
- docs
theme:
name: terminal
features:
- footer.prev_next
- navigation.side.indexes
- revision.date
- revision.history
static_templates:
- 404.html
plugins:
- search
- markdown-filter
- macros
- git-revision-date
extra:
GREETING: !ENV [GREETING]
NAME: !ENV [NAME]
ENV_LEVEL: !ENV [ENV_LEVEL]
REGION: !ENV [REGION]