-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
mkdocs.yml
194 lines (183 loc) · 6.06 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
site_name: MkDoxy
site_url: https://mkdoxy.kubaandrysek.cz/
site_author: Jakub Andrýsek
site_description: >-
MkDoxy -> MkDocs + Doxygen. Easy documentation generator with code snippets.
# Repository
repo_name: JakubAndrysek/MkDoxy/
repo_url: https://github.com/JakubAndrysek/MkDoxy/
# Copyright
copyright: Copyright © 2023 Jakub Andrýsek
theme:
name: material
language: en
logo: assets/logo.png
favicon: assets/logo.png
features:
- navigation.tabs
- navigation.indexes
- navigation.top
icon:
repo: fontawesome/brands/github
palette:
- scheme: slate
primary: orange
accent: orange
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/JakubAndrysek
- icon: fontawesome/brands/twitter
link: https://twitter.com/KubaAndrysek
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/jakub-andrysek/
analytics:
provider: google
property: G-8WHJ2N4SHC
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
use_directory_urls: True
#use_directory_urls: False
plugins:
- search
- open-in-new-tab
- mkdoxy:
enabled: !ENV [ENABLE_MKDOXY, True]
projects:
mkdoxyApi:
src-dirs: mkdoxy
full-doc: True
template-dir: templates-custom
doxy-cfg-file: demo-projects/animal/Doxyfile
doxy-cfg:
FILE_PATTERNS: "*.py"
EXAMPLE_PATH: ""
RECURSIVE: True
OPTIMIZE_OUTPUT_JAVA: True
JAVADOC_AUTOBRIEF: True
EXTRACT_ALL: True
animal:
src-dirs: demo-projects/animal
full-doc: True
doxy-cfg:
FILE_PATTERNS: "*.cpp *.h*"
EXAMPLE_PATH: examples
RECURSIVE: True
save-api: .mkdoxy
full-doc: True
debug: False
ignore-errors: False
emojis-enabled: True
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- def_list
- toc:
permalink: True
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- markdown.extensions.md_in_html
- pymdownx.snippets:
check_paths: true
- pymdownx.blocks.admonition:
types:
- new
- settings
- note
- abstract
- info
- tip
- success
- question
- warning
- failure
- danger
- bug
- example
- quote
- pymdownx.blocks.details:
- pymdownx.blocks.html:
- pymdownx.blocks.definition:
- pymdownx.blocks.tab:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home:
- "README.md"
- "Changelog": "changelog.md"
- "License": "license.md"
- "Usage":
- "usage/index.md"
- "Advanced Usage": "usage/advanced.md"
- Snippets:
- "snippets/index.md"
- "Intelli sense and errors": "snippets/intelli_sense_and_errors.md"
- "Classes": "snippets/classes.md"
- "Source code": "snippets/source_code.md"
- "Links": "snippets/links.md"
- "Functions": "snippets/functions.md"
- "Namespaces": "snippets/namespaces.md"
- "Files": "snippets/files.md"
- MkDoxy API:
- "mkdoxyApi/index.md"
- "Links": "mkdoxyApi/links.md"
- "Classes":
- "Class List": "mkdoxyApi/annotated.md"
- "Class Index": "mkdoxyApi/classes.md"
- "Class Hierarchy": "mkdoxyApi/hierarchy.md"
- "Class Members": "mkdoxyApi/class_members.md"
- "Class Member Functions": "mkdoxyApi/class_member_functions.md"
- "Class Member Variables": "mkdoxyApi/class_member_variables.md"
- "Class Member Typedefs": "mkdoxyApi/class_member_typedefs.md"
- "Class Member Enumerations": "mkdoxyApi/class_member_enums.md"
- "Namespaces":
- "Namespace List": "mkdoxyApi/namespaces.md"
- "Namespace Members": "mkdoxyApi/namespace_members.md"
- "Namespace Member Functions": "mkdoxyApi/namespace_member_functions.md"
- "Namespace Member Variables": "mkdoxyApi/namespace_member_variables.md"
- "Namespace Member Typedefs": "mkdoxyApi/namespace_member_typedefs.md"
- "Namespace Member Enumerations": "mkdoxyApi/namespace_member_enums.md"
- "Functions": "mkdoxyApi/functions.md"
- "Variables": "mkdoxyApi/variables.md"
- "Macros": "mkdoxyApi/macros.md"
- "Files": "mkdoxyApi/files.md"
- Demo API:
- "animal/index.md"
- "Links": "animal/links.md"
- "Classes":
- "Class List": "animal/annotated.md"
- "Class Index": "animal/classes.md"
- "Class Hierarchy": "animal/hierarchy.md"
- "Class Members": "animal/class_members.md"
- "Class Member Functions": "animal/class_member_functions.md"
- "Class Member Variables": "animal/class_member_variables.md"
- "Class Member Typedefs": "animal/class_member_typedefs.md"
- "Class Member Enumerations": "animal/class_member_enums.md"
- "Namespaces":
- "Namespace List": "animal/namespaces.md"
- "Namespace Members": "animal/namespace_members.md"
- "Namespace Member Functions": "animal/namespace_member_functions.md"
- "Namespace Member Variables": "animal/namespace_member_variables.md"
- "Namespace Member Typedefs": "animal/namespace_member_typedefs.md"
- "Namespace Member Enumerations": "animal/namespace_member_enums.md"
- "Functions": "animal/functions.md"
- "Variables": "animal/variables.md"
- "Macros": "animal/macros.md"
- "Files": "animal/files.md"
- Advanced Demo: "https://mkdoxy-demo.kubaandrysek.cz/"