forked from Sean-Bradley/Design-Patterns-In-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
39 lines (38 loc) · 946 Bytes
/
mkdocs.yml
File metadata and controls
39 lines (38 loc) · 946 Bytes
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
site_name: Design Patterns In Python
nav:
- Home: index.md
#- Creational:
- Factory: factory.md
- Abstract Factory: abstract_factory.md
- Builder: builder.md
- ProtoType: prototype.md
#- Structural:
- Decorator: decorator.md
- Adapter: adapter.md
- Facade: facade.md
- Composite: composite.md
- Proxy: proxy.md
#- Behavioural:
- Command: command.md
- Command Undo/Redo: command_undo_redo.md
- Chain of Responsibility: chain_of_responsibility.md
- Observer: observer.md
- Iterator: iterator.md
- Mediator: mediator.md
theme:
name: 'material'
custom_dir: 'G:\mkdocs-material\material'
language: 'en'
palette:
primary: 'Blue Grey'
accent: 'Blue Grey'
font:
false
markdown_extensions:
- codehilite:
guess_lang: false
google_analytics:
- 'UA-147973042-3'
- 'auto'
site_author: 'Sean Bradley'
copyright: 'Copyright 2019 © Sean Bradley'