-
Notifications
You must be signed in to change notification settings - Fork 113
/
mkdocs.yml
66 lines (61 loc) · 2.18 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
site_name: consumerfinance.gov
repo_url: https://github.com/cfpb/consumerfinance.gov
nav:
- Introduction: index.md
- Setup: installation.md
- Running this Project:
- Running in a Virtual Environment: running-virtualenv.md
- Running in Docker: running-docker.md
- Running documentation site locally: running-docs.md
- Debugging and Monitoring: debugging-monitoring.md
- Artifacts and Deployment: deployment.md
- Pages and Components:
- Atomic Structure and Design: atomic-structure.md
- Creating and Editing Components: editing-components.md
- Debugging Templates: debugging-templates.md
- Django and Wagtail Migrations: migrations.md
- Wagtail Pages: wagtail-pages.md
- Supporting Features:
- Browser Support: browser-support.md
- Caching: caching.md
- Feature Flags: feature-flags.md
- Filterable Lists: filterable-lists.md
- Page Search: page-search.md
- Site Search: site-search.md
- Single Sign-On: sso.md
- Translation: translation.md
- Testing:
- JavaScript Unit Testing: javascript-unit-tests.md
- Python Unit Testing: python-unit-tests.md
- Functional Testing: functional-testing.md
- Profiling Django: profiling-django.md
- Other Front-end Testing: other-front-end-testing.md
- Contributing:
- Branching and Merging: branching-merging.md
- Contributing to the Docs: contributing-docs.md
- Related Projects: related-projects.md
- Development Tips: development-tips.md
- How We Use GitHub Actions: github-actions.md
- APIs and Data:
- Ask CFPB: ask-cfpb.md
- Consumer Complaints: consumer-complaint-database.md
- Find a Housing Counselor Tool: housing-counselor-tool.md
theme:
name: readthedocs
custom_dir: docs/theme-overrides/ # @TODO: We may be able to remove this custom template when MkDocs 1.1 is released
extra_css:
- css/overrides.css
markdown_extensions:
- admonition
- pymdownx.betterem
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tilde
- tables
- toc:
permalink: '¶'
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn