generated from boozallen/mkdocs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
87 lines (80 loc) · 2.03 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
site_name: MkDocs Starter
theme:
name: material
palette:
primary: teal
features:
- content.code.annotate
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.top
repo_url: https://github.com/boozallen/mkdocs-starter
edit_uri: edit/main/docs/
extra_css:
- css/extra.css
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/boozallen/mkdocs-starter
version:
provider: mike
default: latest
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_ID
markdown_extensions:
- admonition
- abbr
- footnotes
- attr_list
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true
- pymdownx.snippets:
base_path: "docs"
- pymdownx.betterem:
smart_enable: all
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search: {}
- gen-files:
scripts:
- 'docs/add_glossary.py'
- yamp:
repos:
- url: https://github.com/boozallen/mkdocs-yamp-demo-a
- url: https://github.com/boozallen/mkdocs-yamp-demo-b
branch: develop
# Page Tree
nav:
- Home: 'index.md'
- Concepts:
- 'concepts/overview.md'
- Reference:
- 'reference/overview.md'
- Terraform Modules:
- repos/mkdocs-yamp-demo-a/README.md
- repos/mkdocs-yamp-demo-b/README.md
- Tutorials:
- 'tutorials/overview.md'
- How-To Guides:
- 'how-to/overview.md'
- Contributing:
- 'contributing/overview.md'
- 'contributing/fork-based.md'
- Documentation:
- 'contributing/docs/getting-started.md'
- 'contributing/docs/documentation-structure.md'
- 'contributing/docs/local-development.md'
- 'contributing/docs/markdown-lint.md'
- 'contributing/docs/vale.md'
- 'contributing/docs/add-or-remove-pages.md'
- 'contributing/docs/acronyms.md'
- 'contributing/docs/markdown-cheatsheet.md'