forked from PonomaryovVladyslav/PythonCourses
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
98 lines (89 loc) · 2.09 KB
/
Copy pathmkdocs.yml
File metadata and controls
98 lines (89 loc) · 2.09 KB
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
site_name: Python for Web Developers
site_url: https://openroost.github.io/pymastery-vp/
repo_url: https://github.com/OpenRoost/pymastery-vp
repo_name: OpenRoost/pymastery-vp
edit_uri: edit/main/content/
docs_dir: content
site_dir: site
theme:
name: material
language: en
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.tracking
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
palette:
# Light mode
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
plugins:
- search:
lang:
- en
- uk
- i18n:
docs_structure: folder
fallback_to_default: true
reconfigure_material: true
reconfigure_search: true
languages:
- locale: en
name: English
build: true
default: true
- locale: uk
name: Українська
build: true
markdown_extensions:
# Admonitions
- admonition
- pymdownx.details
# Code blocks
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences
- pymdownx.inlinehilite
# Content features
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
- def_list
# Navigation
- toc:
permalink: true
toc_depth: 3
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/OpenRoost/pymastery-vp
name: GitHub Repository
generator: false # Hide "Made with Material for MkDocs" footer
copyright: >
Copyright © 2024-2026 OpenRoost.
Derivative work based on
<a href="https://github.com/PonomaryovVladyslav/PythonCourses">original course</a>
by Vladyslav Ponomaryov.