-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (75 loc) · 2.26 KB
/
mkdocs.yml
File metadata and controls
82 lines (75 loc) · 2.26 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
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
site_name: DUNE Run Control (drunc) Developer Documentation
repo_name: DUNE-DAQ/drunc
repo_url: https://github.com/DUNE-DAQ/drunc
docs_dir: docs_anchor
nav:
- Home: README.md
- User Documentation:
- Tutorial: user/tutorial.md
- Concepts & explanation: user/explanation.md
- How-to:
- Use handlers and filters: user/how-to/use-handlers.md
- Route messages: user/how-to/route-messages.md
- Add handlers at runtime: user/how-to/add-handlers-at-runtime.md
- Configure ERS: user/how-to/configure-ers.md
- Upgrade an existing package: user/how-to/upgrade-package.md
- Best practices: user/how-to/best-practices.md
- Troubleshooting: user/reference/troubleshooting.md
- Developer Documentation:
- Concepts & explanation: dev/explanation.md
- Architecture reference: dev/reference/architecture.md
- How-to:
- Add a handler: dev/how-to/add-a-handler.md
- Add a filter: dev/how-to/add-a-filter.md
- Debug routing: dev/how-to/debug-routing.md
- How docs work and how to update them: dev/how-to/update-documentation.md
- Common patterns: dev/reference/patterns.md
- API reference: APIref
theme:
name: material
palette:
# Palette toggle for light/dark mode
- scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
icon:
repo: fontawesome/brands/git-alt
markdown_extensions:
- sane_lists
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- exclude:
glob:
- Developer-Wiki/*
- gen-files:
scripts:
- docs_dev/utils/generate_logging_autodocs.py
- docs_dev/utils/mirror_docs.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
show_root_heading: true
show_category_heading: true
merge_init_into_class: true
paths: [.]
# hooks:
# - docs/utils/mkdocs_hooks.py