-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
102 lines (98 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
site_name: project docs
site_dir: public
plugins:
- build_plantuml:
render: "server" # "local" for local rendering
bin_path: "plantuml" # ignored when render: server
server: "http://www.plantuml.com/plantuml" # offical plantuml server
output_format: "svg" # or "png"
diagram_root: "docs/diagrams"
output_folder: "out"
input_folder: "src"
- exclude:
glob:
- diagrams/**/*.py
regex:
- '.*\.(tmp|bin|tar|template)$'
- table-reader
- macros
- mknotebooks:
execute: false
preamble: "preamble.py"
write_markdown: true
- autolinks
- redirects:
# - toc-sidebar
# redirect_maps:
# 'old.md': 'new.md'
# 'old/file.md': 'new/file.md'
# 'some_file.md': 'http://external.url.com/foobar'
- mkdocs-simple-hooks:
# hooks:
# - hook-name: "your.module:hook_function"
- blog:
format: "(%m/%d/%y)"
text-align: "right"
folder: blog
articles: 6
more-articles: "More articles (%)"
pagination: "Page % of %"
display-more-articles: true
display-article-date: true
# Configuration
theme:
name: 'material'
# logo: 'images/logo.svg'
language: 'en'
palette:
primary: 'blue-grey'
accent: 'light-blue'
font:
text: 'Ubuntu'
code: 'Ubuntu Mono'
# Options
extra:
# logo: 'images/download.svg'
feature:
tabs: false
social:
- icon: fontawesome/solid/globe
link: https://www.voronenko.info
- icon: fontawesome/brands/github-alt
link: https://github.com/voronenko
- icon: fontawesome/brands/twitter
link: https://twitter.com/slavko
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/voronenkovyacheslav/
markdown_extensions:
- admonition
- fontawesome_markdown
- fenced_code
- plantuml_markdown:
- codehilite
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- nl2br
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc:
permalink: true