-
Notifications
You must be signed in to change notification settings - Fork 361
/
mkdocs.yml
51 lines (47 loc) · 1.63 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
docs_dir: 'docs'
site_dir: '.build-docs'
strict: true
use_directory_urls: false
site_name: 'Treeherder Docs'
site_url: 'https://treeherder.readthedocs.io'
repo_name: 'mozilla/treeherder'
repo_url: 'https://github.com/mozilla/treeherder'
# https://squidfunk.github.io/mkdocs-material/getting-started/#configuration
theme:
name: 'material'
# https://squidfunk.github.io/mkdocs-material/getting-started/#extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
# Fixes fenced code blocks within lists.
- 'pymdownx.superfences':
disable_indented_code_blocks: True
# Allows index.md to include the repo root README.
- 'pymdownx.snippets':
check_paths: True
# Required so that 2 space indents within lists work the same as
# GitHub and Prettier's markdown implementation.
- mdx_truly_sane_lists
# http://www.mkdocs.org/user-guide/writing-your-docs/#configure-pages-and-navigation
nav:
- About: 'index.md'
- Development:
- Installation: 'installation.md'
- Testing: 'testing.md'
- Loading Pulse data: 'pulseload.md'
- Code Style: 'code_style.md'
- Accessibility: 'accessibility.md'
- Common tasks: 'common_tasks.md'
- Backend tasks: 'backend_tasks.md'
- Infrastructure:
- Administration: 'infrastructure/administration.md'
- Data Ingestion: 'infrastructure/data_ingestion.md'
- Troubleshooting: 'infrastructure/troubleshooting.md'
- Data policies:
- Accessing data: 'accessing_data.md'
- Data retention: 'data_cycling.md'
- Submitting data: 'submitting_data.md'
- Manual test cases: 'testcases.md'