-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathmkdocs.yml
223 lines (212 loc) · 5.78 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# Project information
site_name: cmd2
site_description: cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python.
site_dir: build/html
site_url: !ENV [READTHEDOCS_CANONICAL_URL, https://cmd2.readthedocs.io/]
# Repository
repo_name: cmd2
repo_url: https://github.com/python-cmd2/cmd2
edit_uri: edit/main/docs
# Copyright
copyright: Copyright © 2010-2024, cmd2 contributors.
# Configuration
theme:
name: material
language: en
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
logo: material/home
edit: material/pencil
view: material/eye
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
accent: deep orange
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- announce.dismiss
- content.action.view
- content.action.edit
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
# Plugins
plugins:
- search
- git-revision-date-localized
- include-markdown:
preserve_includer_indent: true
dedent: true
comments: false
- macros:
render_by_default: false
on_error_fail: true
on_undefined: strict
j2_block_start_string: "[[%"
j2_block_end_string: "%]]"
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_if_no_docstring: true
preload_modules:
- argparse
- cmd
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- "!^_"
merge_init_into_class: true
docstring_style: sphinx
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
# Customizations
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/python-cmd2/cmd2
- icon: simple/pypi
link: https://pypi.org/project/cmd2/
# Extensions
# - These are carefully chosen to work with pandoc markdown support for whole document translation
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- tables
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
# Validation
validation:
nav:
omitted_files: info
not_found: warn
absolute_links: info
links:
not_found: warn
absolute_links: info
unrecognized_links: info
not_in_nav: |
**/download/*.md
# Page tree
nav:
- Home: index.md
- Getting Started:
- Overview: overview/index.md
- Installation Instructions: overview/installation.md
- Integrate cmd2 Into Your Project: overview/integrating.md
- Alternatives: overview/alternatives.md
- Resources: overview/resources.md
- Migrating From cmd:
- migrating/index.md
- migrating/why.md
- migrating/incompatibilities.md
- migrating/minimum.md
- migrating/next_steps.md
- Features:
- features/index.md
- features/argument_processing.md
- features/builtin_commands.md
- features/clipboard.md
- features/commands.md
- features/completion.md
- features/disable_commands.md
- features/embedded_python_shells.md
- features/generating_output.md
- features/help.md
- features/history.md
- features/hooks.md
- features/initialization.md
- features/misc.md
- features/modular_commands.md
- features/multiline_commands.md
- features/os.md
- features/packaging.md
- features/plugins.md
- features/prompt.md
- features/redirection.md
- features/scripting.md
- features/settings.md
- features/shortcuts_aliases_macros.md
- features/startup_commands.md
- features/table_creation.md
- features/transcripts.md
- Examples:
- examples/index.md
- examples/first_app.md
- examples/alternate_event_loops.md
- examples/examples.md
- Plugins:
- plugins/index.md
- plugins/external_test.md
- Testing:
- testing.md
- API Reference:
- api/index.md
- api/cmd.md
- api/ansi.md
- api/argparse_completer.md
- api/argparse_custom.md
- api/command_definition.md
- api/constants.md
- api/decorators.md
- api/exceptions.md
- api/history.md
- api/parsing.md
- api/plugin.md
- api/py_bridge.md
- api/table_creator.md
- api/utils.md
- Meta:
- doc_conventions.md
# Include extra CSS to make some style adjustments for ReadTheDocs
extra_css:
- stylesheets/readthedocs.css
# Include extra JS to setup Read the Docs addons integrations
extra_javascript:
- javascripts/readthedocs.js