-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
86 lines (82 loc) · 2.7 KB
/
Copy pathmkdocs.yml
File metadata and controls
86 lines (82 loc) · 2.7 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
site_name: Mastering Python
docs_dir: "doc"
nav:
- Home: index.md
- Basics:
- Python Paradigms: basics/python_paradigm.md
- Variables and Datatypes: basics/variables_and_datatypes.md
- Operators: basics/operators.md
- Control Flow: basics/control_flow.md
- Exception Handling: basics/exception.md
- Modules and Packages: basics/modules_packages.md
- Object References, Mutability, and Recycling: basics/object_handling.md
- Hashable Objects: basics/hashable.md
- Objects:
- Classes: classes_objects/basic_classes.md
- Data Model: classes_objects/data_model.md
- Interfaces, Protocols, and ABCs: classes_objects/interfaces_protocols_abc.md
- Inheritance: classes_objects/inheritance.md
- Functions:
- Basic: functions/basic.md
- Parameters: functions/parameters.md
- Variables Scope: functions/variables_scope.md
- High-Order and Lambda Function: functions/hof_lamda_functions.md
- User-Defined Callable Types: functions/user_defined_callable_types.md
- Type Hits: functions/type_hits.md
- Data Structures:
- Built-In Sequences: data_structures/sequence.md
- List: data_structures/list.md
- Tuple: data_structures/tuple.md
- Set: data_structures/set.md
- Dict: data_structures/dict.md
- Closures and Decorators:
- Closures: decorators_closures/closures.md
- Decorators: decorators_closures/decorators.md
- Design Patterns:
- Gang of Four - Design Patterns: design_patterns/index.md
- Iterators: design_patterns/iterators.md
- Built-In Examples:
- Functools Module: builtin_modules_examples/functools_module.md
- Operator Module: builtin_modules_examples/operator_module.md
- Itertools Module: builtin_modules_examples/itertools.md
theme:
name: material
language: en
logo: images/python.png
favicon: images/py.svg
palette:
scheme: slate
primary: blue
accent: yellow
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.tabs.instant
- content.code.copy
- content.code.annotate
plugins:
- search
- markdown-exec
- mkdocstrings:
enabled: !ENV [ENABLE_MKDOCSTRINGS, true]
custom_templates: src
default_handler: python
handlers:
python:
options:
show_source: true
markdown_extensions:
- footnotes
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg