-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (89 loc) · 2.88 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: Python Notebook from Zero to Advanced
site_url: 'https://zhenyuanlu.com/python-notebook/'
site_description: A simplistic place to learn Python
repo_url: https://github.com/zhenyuanlu/python-notebook
repo_name: zhenyuanlu/python-notebook
nav:
- Home: 'index.md'
- Disclaimer: '00_disclaimer.md'
- 01. Get Started: '01_get_started.md'
- 02. Data Types: '02_data_types.md'
- 03. Control and Functions: '03_control_functions.md'
- 04. Advanced Formatting: '04_advanced_formatting.md'
- 05. Loops, Comprehensions: '05_loops_comprehensions.md'
- 06. Iterable, Iterator, Generator: '06_iterable_iterator_generator.md'
- 07. Object-Oriented Programming: '07_oop.md'
- 08. Error Handling and Exceptions: '08_errors.md'
# - (WIP) Modules, Packages, and File I/O: ''
# - (WIP) Functional Programming and Standard Library: ''
# - (WIP) Testing and Regular Expressions: ''
# - (WIP) Metaclasses and Other Python Features: ''
theme:
name: material
# custom_dir: material
logo: assets/z1.png
favicon: assets/z1.png
features:
- content.code.copy
- navigation.instant
- navigation.top
- content.tabs.link
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: black
accent: orange
toggle:
icon: material/brightness-7
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
accent: orange
toggle:
icon: material/brightness-4
name: Switch to dark mode
markdown_extensions:
- meta
- admonition
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- pymdownx.superfences
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- social
# - git-revision-date-localized:
# type: custom
# custom_format: "%m/%d/%Y"
# - with-pdf:
# author: Zhenyuan Lu
# output_path: E:/mdbook_mkDoc/pyNote/document.pdf
# - mkpdfs
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/zhenyuanlu/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/zhenyuanlu/
- icon: fontawesome/brands/twitter
link: https://twitter.com/zyl_zhen/
analytics:
provider: google
property: G-6LCB2YRQBG
# Copyright
# Copyright © 2023
copyright: 'Python Notebook by <a href="https://zhenyuanlu.com/" target="_blank">Zhenyuan Lu</a>. This work is under <a href="https://github.com/zhenyuanlu/python-notebook/blob/main/LICENSE" target="_blank">MIT License</a>.'