-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
26 lines (26 loc) · 928 Bytes
/
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
site_name: Mkdocs with UML charts
pages:
- Home: index.md
- UML: uml.md
theme:
name: readthedocs
#name: mkdocs
custom_dir: theme/
repo_url: https://github.com/hahadaphne/mkdocs_UML
repo_name: null
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mermaid/7.1.0/mermaid.min.js
- https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.7/raphael.min.js
- https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js
- https://cdnjs.cloudflare.com/ajax/libs/js-sequence-diagrams/1.0.6/sequence-diagram-min.js
- https://cdnjs.cloudflare.com/ajax/libs/flowchart/1.6.5/flowchart.min.js
- js/umlconvert.js
extra_css:
- css/mermaid.min.css
markdown_extensions:
- pymdownx.superfences:
custom_fences: [
{name: flow, class: uml-flowchart}
,{name: sequence, class: uml-sequence-diagram}
,{name: mermaid, class: mermaid}
]