-
Notifications
You must be signed in to change notification settings - Fork 115
/
mkdocs.yml
61 lines (52 loc) · 1.13 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
site_name: Python v ČR
site_url: https://python.cz/
repo_url: https://github.com/pyvec/python.cz
repo_name: Upravit tyto stránky
nav:
- Ahoj!: index.md
- Akce: akce.md
- Pro začátečníky: zacatecnici.md
- Práce: prace.md
- Zapoj se!: zapojse.md
- English: en.md
theme:
name: material
logo: images/site-logo.svg
favicon: images/favicon.ico
language: cs
palette:
primary: custom
accent: custom
font: false
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- content.action.edit
custom_dir: overrides
static_templates:
- events.ics
icon:
repo: fontawesome/brands/github
edit_uri: edit/main/docs/
markdown_extensions:
- toc:
toc_depth: 2-2
permalink: '#'
permalink_title: Odkaz na tuto sekci
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- attr_list
- md_in_html
hooks:
- hooks/on_pre_build.py
- hooks/on_page_markdown.py
- hooks/on_post_build.py
extra_css:
- css/extra.css
plugins: []
watch:
- docs
- hooks