-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
136 lines (129 loc) · 3.8 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
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
site_name: Hakan Çelik | Metaclasses in Python
site_description: Hakan Çelik - Software Engineer at DeepInfo.
site_url: https://metaclasses.hakancelik.dev
repo_url: https://github.com/hakancelikdev/metaclasses
repo_name: hakancelikdev/metaclasses
edit_uri: https://github.com/hakancelikdev/metaclasses/tree/main/docs
copyright: Copyright © 2023 - 2023 Hakan Çelik
markdown_extensions:
- fenced_code
- footnotes
- tables
- codehilite
- legacy_em
- meta
- sane_lists
- smarty
- toc:
permalink: true
baselevel: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
separator: '[\s\-\.]+'
prebuild_index: true
- git-revision-date-localized:
type: date
enable_creation_date: true
- minify:
minify_html: true
extra:
analytics:
provider: google
property: G-2EGM5WWEED
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well as to
measure the effectiveness of our documentation and whether users find what they're
searching for. With your consent, you're helping us to make our documentation
better.
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/hakancelikdev
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/hakancelikdev
- icon: fontawesome/solid/globe
link: https://hakancelik.dev
homepage: https://metaclasses.hakancelik.dev
theme:
name: material
custom_dir: overrides
language: en
logo: "assets/images/profile.png"
favicon: "assets/images/profile.png"
features:
- navigation.instant
- navigation.tracking
- navigation.indexes
- search.suggest
- search.highlight
- search.share
- header.autohide
- navigation.top
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Noto Sans
code: Roboto Mono
icon:
repo: fontawesome/brands/github
nav:
- Overview: index.md
- Tutorial:
- tutorial/understanding-python-classes.md
- tutorial/dynamic-class-creation.md
- tutorial/more-accurate-dynamic-class-creation.md
- tutorial/metaclasses-in-python.md
- tutorial/run-methods-order-in-python.md
- tutorial/run-methods-order-in-python-with-more-explanation.md
- tutorial/invisible-metaclasses-in-python.md
- tutorial/meta-classes-without-type.md
- tutorial/more-accurate-meta-classes-without-type.md
- Examples:
- tutorial/examples/register-classes-in-python.md
- tutorial/examples/singleton-in-python.md
- tutorial/examples/auto-slots.md
- tutorial/examples/logging-namespace.md
- tutorial/examples/modeling-a-class-with-a-metaclass.md
- tutorial/examples/define-method-if-condition-true.md