-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
53 lines (50 loc) · 1.61 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
site_name: Hedron Documentation
nav:
- Home: index.md
- User Documentation:
- System Call Interface:
- user-documentation/index.md
- user-documentation/data-structures.md
- user-documentation/syscall-binary-interface.md
- user-documentation/syscall-reference.md
- Developer Documentation:
- Implementation Details: implementation.md
- Design Proposals: proposals.md
theme:
name: material
icon:
repo: fontawesome/brands/gitlab
features:
- navigation.indexes
- navigation.instant
markdown_extensions:
- toc:
toc_depth: 2
- admonition
- footnotes
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- search
- tags:
tags_file: index.md
- drawio-exporter:
# Diagrams are cached to speed up site generation. The default path is
# drawio-exporter, relative to the documentation directory.
cache_dir: 'cache/drawio-exporter'
# Drawio executable is managed by nix here
drawio_executable: null
# Additional Draw.io CLI args
drawio_args: []
format: svg
# Embed format
# * The default is to embed via the <img> tag, only rewriting the
# value of the src attribute.
# * Consider <object type="image/svg+xml" data="{img_src}"></object>
# to enable interactive elements (like hyperlinks) in SVGs.
embed_format: '{img_open}{img_src}{img_close}'
# Glob pattern for matching source files
sources: '*.drawio'