-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
executable file
·52 lines (46 loc) · 1.1 KB
/
mkdocs.yml
File metadata and controls
executable file
·52 lines (46 loc) · 1.1 KB
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
site_name: DOMD Documentation
site_description: 'Detect and Manage Project Commands'
site_author: 'Tom Sapletta'
# Documentation theme
theme:
name: readthedocs
highlightjs: true
include_search_page: true
search_index_file: search/search_index.json
# Navigation
nav:
- Home: index.md
- User Guide:
- Installation: user-guide/installation.md
- Quickstart: user-guide/quickstart.md
- Features:
- Core Features: features/core.md
- Ansible Integration: features/ansible.md
- API Reference:
- Core: api/core.md
- Parsers: api/parsers.md
- Reporters: api/reporters.md
- Development:
- Testing: development/testing.md
- Ansible Tests: development/ansible-tests.md
- Contributing: contributing.md
- Changelog: changelog.md
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: true
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
# Customization
extra_css:
- css/extra.css
extra_javascript:
- js/extra.js
# Build options
strict: true
use_directory_urls: true