forked from holochain/docs-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
75 lines (68 loc) · 2.1 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
site_name: Holochain Docs
# Navigation
nav:
- Get Started:
- Introduction: index.md
- What is Holochain?: what-is-holochain.md
- Install Holochain: install.md
- Get Involved: get-involved.md
- Glossary: glossary.md
- Advanced Installation Tips: install-advanced.md
- Core Concepts:
- Introduction: 'concepts/index.md'
- The Basics: 'concepts/1_the_basics.md'
- Application Architecture: 'concepts/2_application_architecture.md'
- Source Chain: 'concepts/3_source_chain.md'
- DHT: 'concepts/4_dht.md'
- Links and Anchors: 'concepts/5_links_anchors.md'
- CRUD Actions: 'concepts/6_crud_actions.md'
- Validation: 'concepts/7_validation.md'
- Calls and Capabilities: 'concepts/8_calls_capabilities.md'
- Signals: 'concepts/9_signals.md'
- Resources:
- Introduction: 'resources/index.md'
- Dependency Pinning Guide: 'resources/dependency-pinning-guide.md'
- Install NixOS on External HDD: 'resources/install-nixos-on-external-hdd.md'
- Holochain RSM Migration Guide: 'https://holochain-open-dev.github.io/blog/holochain-rsm-migration-guide/'
- References:
- Introduction: 'references.md'
- HDK: 'https://docs.rs/hdk/0.0.100/hdk/'
- HDK introductory guide: 'https://github.com/holochain/holochain/blob/develop/crates/hdk/README.md'
- Admin API: '/rustdoc/holochain_conductor_api/enum.AdminRequest.html'
- App API: '/rustdoc/holochain_conductor_api/enum.AppRequest.html'
# Theme
theme:
name: 'material'
custom_dir: 'theme'
feature:
tabs: true
# The fonts are hardcoded into main.html and style.css;
# Don't use this setting!
font: false
palette:
primary: 'indigo'
accent: 'indigo'
favicon: '/favicon.ico'
extra_css:
- 'custom/style.css'
- 'custom/prism.css'
extra_javascript:
- 'custom/prism.js'
google_analytics:
- 'UA-131226536-4'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- meta
- codehilite:
guess_lang: false
- toc:
permalink: true
- smarty
- pymdownx.tilde
- pymdownx.emoji
- pymdownx.details
- pymdownx.superfences
- pymdownx.extra
- pymdownx.betterem