-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
85 lines (78 loc) · 1.96 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
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/
plugins:
- search: {}
- gen-files:
scripts:
- 'docs/add_glossary.py'
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
# Page Tree
nav:
- Home: 'index.md'
- Concepts:
- 'concepts/overview.md'
- Section One:
- 'concepts/section-one/page-one.md'
- 'concepts/section-one/page-two.md'
- Section Two:
- 'concepts/section-two/page-one.md'
- 'concepts/section-two/page-two.md'
- Reference:
- 'reference/overview.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'