forked from hyperledger-cello/cello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (82 loc) · 2.17 KB
/
mkdocs.yml
File metadata and controls
82 lines (82 loc) · 2.17 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
site_name: Hyperledger Cello
repo_name: "hyperledger/cello"
repo_url: "https://github.com/hyperledger/cello"
dev_addr: 0.0.0.0:8000
theme:
name: "material"
logo: "images/favicon.png"
favicon: "images/favicon.png"
features:
- navigation.tabs
- navigation.top
- navigation.footer
- content.code.copy
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: "light-blue"
accent: "light-blue"
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
primary: "light-blue"
accent: "light-blue"
font:
text: "Ubuntu Sans"
code: "Ubuntu Sans Mono"
markdown_extensions:
- admonition
- codehilite
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.mark
- pymdownx.critic:
mode: view
docs_dir: docs
nav:
- Home: index.md
- Concepts: concepts.md
- Design:
- Architecture: design/arch.md
- Tutorials:
- "Lesson 0: Introduction": tutorials/introduction.md
- "Lesson 1: Prerequisites": tutorials/prerequisites.md
- "Lesson 2: Server": tutorials/server.md
- "Lesson 3: Agent": tutorials/agent.md
- "Lesson 4: User & Organization": tutorials/organization.md
- "Lesson 5: Agent, Network, & Node": tutorials/node.md
- "Lesson 6: Channel": tutorials/channel.md
- Reference:
- Configuration:
- Server Configuration: reference/configuration/server.md
- Commands:
- make: reference/commands/make.md
- Contribute: contributing.md
- FAQ:
- faq.md
- Release Notes:
- release_note.md
plugins:
- search
- mermaid2
# - minify:
# minify_html: true
# - pdf-export:
# media_type: print
# combined: true
# enabled_if_env: ENABLE_PDF_EXPORT