-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
90 lines (79 loc) · 1.96 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
# Best reference regarding this config file is:
# https://github.com/squidfunk/mkdocs-material/blob/master/mkdocs.yml
site_name: "PeepShow"
site_url: "https://gergelyk.github.io/peepshow"
theme:
name: "material"
feature:
tabs: false # Appear in the title bar
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Appears in the title bar
repo_name: peepshow
repo_url: https://github.com/gergelyk/peepshow
extra:
# Appears in the footer bar
social:
- type: gitlab
link: https://github.com/gergelyk/peepshow
- type: envelope-o
link: mailto:[email protected]
copyright: "Copyright © 2020 Grzegorz Krasoń"
markdown_extensions:
- abbr
- footnotes
- codehilite:
guess_lang: false
linenums: false
noclasses: false
- def_list
- toc:
permalink: true
- meta
- md_in_html
- mdx_include:
base_path: docs
recurs_remote: null
- sane_lists
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.escapeall
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
# - minify:
# minify_html: true # this doesn't work well with mermaid
- macros:
module_name: docs.macros
- mkdocstrings:
watch:
- peepshow
- markdownmermaid
- progress
# - htmlproofer # this only shows broken links in the build console
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.8/mermaid.core.min.js
extra_css:
- custom.css
# Appears on the left side
nav:
- Overview: index.md
- Peep: peep.md
- Show: show.md