-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yaml
81 lines (71 loc) · 2.08 KB
/
mkdocs.yaml
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
site_name: Libuipc Documentation
site_description:
theme:
name: material
custom_dir: docs/overrides
features:
- navigation.indexes
- content.tabs.link
- content.code.copy
- content.code.select
- content.code.annotate
palette:
# Palette toggle for light mode
- scheme: default
primary: red
accent: red
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- def_list
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
use_directory_urls: true
plugins:
- search
- mkdocs-video
- literate-nav:
nav_file: nav.md
- mkdoxy:
projects:
Libuipc: # name of project must be alphanumeric + numbers (without spaces)
src-dirs: include/ # path to source code (support multiple paths separated by space) => INPUT
full-doc: True # if you want to generate full documentation
doxy-cfg: # standard doxygen configuration (key: value)
FILE_PATTERNS: "*.h*" # specify file patterns to filter out
RECURSIVE: True # recursive search in source directories
GENERATE_LATEX: False # generate latex output
HAVE_DOT: True
CLASS_DIAGRAMS: True
CLASS_GRAPH: True
extra_css:
- stylesheets/doxide.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js