-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
101 lines (89 loc) · 2.28 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: MkDocs - TypeDoc Plugin
site_url: https://zip-folders.kubaandrysek.cz/
site_author: Jakub Andrýsek
site_description: >-
MkDocs plugin to zip configured folders and add them to the site.
# Repository
repo_name: JakubAndrysek/mkdocs-zip-folders
repo_url: https://github.com/JakubAndrysek/mkdocs-zip-folders
edit_uri: edit/main/docs/
use_directory_urls: True
# Copyright
copyright: Copyright © 2023 Jakub Andrýsek
theme:
name: material
language: en
logo: assets/logo.png
favicon: assets/logo.png
features:
- navigation.tabs
- navigation.indexes
- navigation.top
- content.action.edit
- content.action.view
- navigation.tracking
- navigation.tabs
- navigation.expand
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/JakubAndrysek
- icon: fontawesome/brands/twitter
link: https://twitter.com/KubaAndrysek
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/jakub-andrysek/
analytics:
provider: google
# property: G-
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
plugins:
- search
- open-in-new-tab
- glightbox
- zip_folders:
folders:
- myCode
- toShare
- inFolder/zipInFolder
# debug: true
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
nav:
- Home: 'README.md'
- TypeDoc API: '/typedocApi'