-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
158 lines (145 loc) · 3.82 KB
/
mkdocs.yml
File metadata and controls
158 lines (145 loc) · 3.82 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
## Site settings
site_name: Python 3 Tutorials
site_url: https://abolfazlamiri.ir/python3tutorials
site_author: Abolfazl Amiri
site_description: Starter to intermediate python 3 tutorial with examples.
## Repo settings
repo_name: Python3Tutorials
repo_url: https://github.com/aasmpro/python3tutorials
edit_uri: ""
## Theme settings
theme:
name: material
custom_dir: docs/overrides
### comment these lines,
### if you want to use default material theme
palette:
scheme: gruvbox
primary: blue
accent: blue
### uncomment to use default material theme
# palette:
# scheme: default
favicon: assets/images/favicon.png
icon:
logo: assets/images/favicon.svg
logo: assets/images/favicon.svg
features:
- search.highlight
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.instant
- navigation.top
- toc.integrate
## Extra data
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/aasmpro
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/aasmpro/
- icon: octicons/dot-fill-24
link: https://abolfazlamiri.ir
## Version
### this extra key generates a version text after copyright
### must have name and link
# version:
# name: v1.0.0
# link: https://github.com/aasmpro/gruvdoc/releases/tag/v1.0.0
## License
### this extra key generates a license text after copyright
### must have name and link
license:
name: MIT
link: https://github.com/aasmpro/python3tutorials/blob/master/LICENSE
## Made with
### this extra key can set `Made with ...` text in footer
### set true to get default one
### comment for set false to remove
### or set your custom text!
made_with: true
## Navigation
use_directory_urls: true
### this is for manual nav configs
### uncomment to config nav manually
nav:
- Home: index.md
- Introduction: 00_introduction.md
- History: 01_history.md
- Features: 02_features.md
- Version: 03_versions.md
- 2 vs 3: 04_2vs3.md
- Installation: 05_installation.md
- PIP: 06_pip.md
- Basic Syntax: 07_basic_syntax.md
- Numbers: 08_numbers.md
- Strings: 09_strings.md
- Lists: 10_lists.md
- Tuples: 11_tuples.md
- Dictionaries: 12_dictionaries.md
- Conditionals: 13_conditionals.md
- Loops: 14_loops.md
- Functions: 15_functions.md
- Files: 16_files.md
- Exceptions: 17_exceptions.md
- Modules: 18_modules.md
- OOP: 19_oop.md
- Tips & tools: 20_tips_and_tools.md
## Copyright
copyright: Python 3 Tutorials
## Extra js files
extra_javascript:
- assets/javascripts/tablesort.js
## Extra css files
### comment these lines,
### if you want to use default material theme
extra_css:
- assets/stylesheets/fonts.css
- assets/stylesheets/vars.css
- assets/stylesheets/scheme.css
- assets/stylesheets/primary.css
- assets/stylesheets/accent.css
- assets/stylesheets/admonitions.css
- assets/stylesheets/fixes.css
- assets/stylesheets/styles.css
## Extension settings
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.caret
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets
- pymdownx.tabbed
- pymdownx.tilde
- pymdownx.betterem:
smart_enable: all
- pymdownx.tasklist:
custom_checkbox: true
- meta
- toc:
permalink: "#"
## Plugin settings
plugins:
- search
- macros
- minify:
minify_html: true
minify_js: true
htmlmin_opts:
remove_comments: true