-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
88 lines (80 loc) · 2.07 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
88
---
site_name: "MkDocs Ansible Collection"
site_url: "https://mkdocs-ansible-collection.readthedocs.io/en/latest/"
repo_url: "https://github.com/cmsirbu/mkdocs-ansible-collection"
theme:
name: "material"
navigation_depth: 4
features:
- "content.action.edit"
- "content.action.view"
- "content.code.copy"
- "navigation.footer"
- "navigation.indexes"
- "navigation.tabs"
- "navigation.tabs.sticky"
- "navigation.tracking"
- "search.highlight"
- "search.share"
- "search.suggest"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: "default"
primary: "orange"
accent: "deep orange"
toggle:
icon: "material/weather-sunny"
name: "Switch to dark mode"
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: "slate"
primary: "orange"
accent: "deep orange"
toggle:
icon: "material/weather-night"
name: "Switch to light mode"
extra_css:
- "extra.css"
plugins:
- "search"
- "ansible-collection":
collections:
- fqcn: "ansible.builtin"
- fqcn: "ansible.posix"
- fqcn: "networktocode.nautobot"
- fqcn: "ansible.netcommon"
- fqcn: "ansible.utils"
- fqcn: "arista.eos"
plugin_types: # NYI
- "inventory"
- "module"
markdown_extensions:
- "admonition"
- "toc":
permalink: true
- "attr_list"
- "md_in_html"
- "pymdownx.highlight":
anchor_linenums: true
- "pymdownx.inlinehilite"
- "pymdownx.snippets"
- "pymdownx.superfences":
custom_fences:
- name: "mermaid"
class: "mermaid"
format: !!python/name:pymdownx.superfences.fence_code_format
- "footnotes"
watch:
- "README.md"
nav:
- "index.md"
- "User Guide": "user_guide.md"
- "Ansible Builtins": "ansible.builtin"
- "Collection Showcase":
- "showcase/index.md"
- "ansible.posix"
- "ansible.netcommon"
- "ansible.utils"
- "Arista EOS": "arista.eos"
- "networktocode.nautobot"