-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
42 lines (42 loc) · 1.29 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
---
site_name: Chronicle Examples
docs_dir: .
theme:
name: material
palette:
scheme: Chronicle
logo: docs/assets/logos/logo.png
favicon: docs/assets/logos/favicon.png
features:
- content.code.copy
copyright: Copyright © 2023 The Chronicle Authors | Documentation distributed under CC BY 4.0
plugins:
- same-dir
- search
- build_plantuml:
theme_enabled: false
render: "server" # or "local" for local rendering
server: "https://www.plantuml.com/plantuml" # official plantuml server
disable_ssl_certificate_validation: false # for self-signed and invalid certs
output_format: "svg" # or "png"
diagram_root: "docs/diagrams" # should reside under docs_dir
output_folder: "out"
input_folder: "src"
input_extensions: "" # comma separated list of extensions to parse, by default every file is parsed
markdown_extensions:
- attr_list
- admonition
- def_list
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Overview: README.md
- Artworld: domains/artworld/guide.md
- Corporate Actions: domains/corporate-actions/guide.md
- Manufacturing: domains/manufacturing/guide.md
- Time Recording: domains/time-recording/guide.md