-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
135 lines (123 loc) · 3.55 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
site_name: Mithril Shards
site_url: https://mithrilman.github.io/mithrilshards
repo_name: mithrilshards
repo_url: https://github.com/mithrilman/mithrilshards
edit_uri: edit/master/docs/
site_author: Mithril Man
copyright: Mithril Man 2020
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- _mkdocs/extra_js/custom.js
extra_css:
- _mkdocs/extra_css/custom.css
# change directory names here
docs_dir: docs
site_dir: ./docs_site
theme:
name: material
custom_dir: docs/_mkdocs/overrides
icon:
repo: fontawesome/brands/github
features:
#- navigation.instant # problems with mermaid
#- navigation.sections
#- navigation.tabs
#- navigation.tabs.sticky # for insiders only
- navigation.indexes # for insiders only
- navigation.top
#- navigation.expand
#- header.autohide
#- toc.integrate
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- abbr
- def_list
- attr_list #needed to use {:target="_blank"} on links
- pymdownx.snippets:
base_path: docs/_mkdocs/snippets
check_paths: true
- toc:
permalink: false
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
#- meta
- admonition
- pymdownx.highlight:
use_pygments: true
linenums: true
noclasses: false #set to true to enable pygments_style option
pygments_style: 'vs'
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
plugins:
- search
- git-revision-date
- exclude-search:
exclude:
- _private/*.md
- _snippets/*.*
- extra_css/*.*
#- section-index
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/MithrilMan/MithrilShards
generator: false
# version:
# provider: mike
nav:
- index.md
- Mithril Shards Core:
- mithril-shards/index.md
- mithril-shards/shards.md
- mithril-shards/forge-builder.md
- mithril-shards/default-forge.md
- mithril-shards/event-bus.md
- Shards:
- BedrockNetwork:
- shards/bedrock-network/index.md
- Serilog:
- shards/serilog/index.md
- WebApi:
- shards/web-api/index.md
- shards/web-api/using-webapishard.md
- shards/web-api/areas.md
- shards/web-api/creating-a-controller.md
- shards/web-api/swagger-ui.md
- DevController:
- shards/dev-controller/index.md
- Bitcoin:
- shards/bitcoin/index.md
- shards/bitcoin/network.md
- shards/bitcoin/testing_node_communication.md
- Example Projects:
- example-projects/index.md
- example-projects/mithril-shards-example.md
- example-projects/mithril-shards-example-network-bedrock.md
- example-projects/mithril-shards-example-dev.md
- example-projects/mithril-shards-example-node.md
- example-projects/running-example.md
- Issue Tracker: 'https://github.com/MithrilMan/MithrilShards/issues'