-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
104 lines (92 loc) · 2.86 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
site_name: Pony Patterns
copyright: Copyright © 2021 The Pony Developers
edit_uri: edit/main/docs/
repo_url: https://github.com/ponylang/pony-patterns/
use_directory_urls: false
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/ponylang
- icon: fontawesome/brands/twitter
link: https://twitter.com/ponylang
markdown_extensions:
- pymdownx.highlight
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- smarty
- toc:
permalink: true
plugins:
- search
- htmlproofer:
raise_error: True
theme:
name: material
favicon: assets/logo.png
features:
- content.code.copy
- content.code.select
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tracking
- search.highlight
- search.share
- search.suggest
icon:
repo: fontawesome/brands/github
logo: assets/logo.png
palette:
# Light mode
- scheme: default
primary: brown
accent: amber
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: brown
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Home: 'index.md'
- Asynchronous Patterns:
- Overview: 'async/index.md'
- Accessing an Actor with Arbitrary Transactions: 'async/access.md'
- Interrogating Actors with Promises: 'async/actorpromise.md'
- Waiting: 'async/waiting.md'
- Code Sharing Patterns:
- Overview: 'code-sharing/index.md'
- Global Function: 'code-sharing/global-function.md'
- Inheritance: 'code-sharing/inheritance.md'
- Mixin: 'code-sharing/mixin.md'
- Notifier: 'code-sharing/notifier.md'
- Creation Patterns:
- Overview: 'creation/index.md'
- Static Constructor: 'creation/static-constructor.md'
- Supply Chain: 'creation/supply-chain.md'
- Data Sharing Patterns:
- Overview: 'data-sharing/index.md'
- Copying: 'data-sharing/copying.md'
- Isolated Field: 'data-sharing/isolated-field.md'
- Persistent Data Structures: 'data-sharing/persistent-data-structures.md'
- Object Capabilities Patterns:
- Overview: 'object-capabilities/index.md'
- Single Use Object Capabilities: 'object-capabilities/single-use.md'
- Performance Patterns:
- Overview: 'performance/index.md'
- Limiting String Allocations: 'performance/limiting-string-allocations.md'
- Preallocate Arrays: 'performance/preallocate-arrays.md'
- Testing Patterns:
- Overview: 'testing/index.md'
- Testing Notifier Interactions: 'testing/notifier-interactions.md'
- Testing Output Only Actors: 'testing/output-only-actors.md'