-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
89 lines (84 loc) · 2.74 KB
/
mkdocs.yml
File metadata and controls
89 lines (84 loc) · 2.74 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
---
site_name: Design Patterns in Python
site_description: Comprehensive library of software design patterns with Python implementations
site_author: Design Patterns Library
repo_url: https://github.com/sorenwacker/DesignPatterns
nav:
- Home: index.md
- Introduction: introduction.md
- Overview: overview.md
- Design Patterns:
- Creational:
- Factory: patterns/creational/factory.md
- Singleton: patterns/creational/singleton.md
- Builder: patterns/creational/builder.md
- Prototype: patterns/creational/prototype.md
- Abstract Factory: patterns/creational/abstract_factory.md
- Behavioral:
- Strategy: patterns/behavioral/strategy.md
- Observer: patterns/behavioral/observer.md
- Command: patterns/behavioral/command.md
- Chain of Responsibility: patterns/behavioral/chain_of_responsibility.md
- Interpreter: patterns/behavioral/interpreter.md
- State: patterns/behavioral/state.md
- Template Method: patterns/behavioral/template_method.md
- Iterator: patterns/behavioral/iterator.md
- Visitor: patterns/behavioral/visitor.md
- Mediator: patterns/behavioral/mediator.md
- Memento: patterns/behavioral/memento.md
- Structural:
- Decorator: patterns/structural/decorator.md
- Adapter: patterns/structural/adapter.md
- Composite: patterns/structural/composite.md
- Facade: patterns/structural/facade.md
- Proxy: patterns/structural/proxy.md
- Bridge: patterns/structural/bridge.md
- Testing:
- Fixture: patterns/testing/fixture.md
- Reference:
- Pattern Selection Guide: pattern_guide.md
- Pattern Comparison: pattern_comparison.md
- Practical Examples: practical_examples.md
- Anti-Patterns: anti_patterns.md
- Quick Reference: quick_reference.md
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.details
- tables
- toc:
permalink: true
plugins:
- autorefs:
resolve_closest: true
- mkdocstrings:
handlers:
python:
options:
show_submodules: true