-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathmkdocs.yml
115 lines (109 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: zabbix-cli
repo_url: https://github.com/unioslo/zabbix-cli
repo_name: unioslo/zabbix-cli
edit_uri: edit/master/docs/
theme:
name: material
palette:
scheme: slate
primary: blue
accent: orange
language: en
features:
- navigation.tracking
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.action.edit
- toc.follow
- navigation.path
- navigation.top
- navigation.tabs
- navigation.footer
- navigation.sections
- navigation.indexes
watch:
- zabbix_cli
plugins:
- autorefs
- search
- glightbox # images
- mkdocs-simple-hooks:
hooks:
# NOTE: we would like to run this on_pre_build, but it causes an infinite
# loop due to generating new files.
# This might be solveable by migrating all these scripts to mkdocs-gen-files
on_startup: docs.scripts.run:main
- literate-nav: # enhanced nav section (enables wildcards)
- include-markdown:
preserve_includer_indent: true
- gen-files:
scripts:
- docs/scripts/gen_ref_pages.py
- macros:
on_error_fail: true
include_dir: docs/data
include_yaml:
- commandlist: docs/data/commandlist.yaml
- formats: docs/data/formats.yaml
- options: docs/data/options.yaml
- config_options: docs/data/config_options.yaml
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: numpy
members_order: source
docstring_section_style: table
heading_level: 1
show_source: true
show_if_no_docstring: true
show_signature_annotations: true
show_root_heading: true
show_category_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- mdx_gh_links:
user: unioslo
repo: zabbix-cli
- toc:
toc_depth: 3
nav:
- Home:
- index.md
- User Guide:
- Installation: guide/installation.md
- Configuration: guide/configuration.md
- Authentication: guide/authentication.md
- Usage: guide/usage.md
- Logging: guide/logging.md
- Bulk Operations: guide/bulk.md
- Migration: guide/migration.md
- Commands:
- commands/*.md
- Plugins:
- Introduction: plugins/index.md
- plugins/guide.md
- plugins/local-plugins.md
- plugins/external-plugins.md
# - Reference:
# - reference/*.md
# - contributing.md