-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
53 lines (49 loc) · 1.53 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: Neuro-CEILing
repo_url: https://github.com/rafaelBauer/neuro-ceiling
theme:
name: "material"
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- content.code.select
- content.code.annotate
plugins:
- mkdocstrings:
handlers:
python:
options:
paths: [ neuroceiling ] # search packages folder
docstring_style: google
docstring_section_style: list
show_docstring_attributes: true
merge_init_into_class: false
- plantuml-colocator
- search
- build_plantuml:
render: 'server' # or "local" for local rendering
# bin_path: '/usr/local/bin/plantuml' # ignored when render: server
server: 'http://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
- exclude:
glob:
- diagrams/include/C4-PlantUML/*
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Neuro-CEILing: 'index.md'
- Setup/Update Environment: environment.md
- Design: design/design.md
- Notes: notes.md
- API: api.md