forked from witnet/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
94 lines (87 loc) · 2.66 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
site_name: 'Witnet Protocol Documentation'
site_url: https://docs.witnet.io
copyright: © 2018-2019 The Witnet Community. Available under <a href="https://www.gnu.org/licenses/fdl-1.3.en.html" rel="license">GNU Free Documentation License v1.3</a>
nav:
- Overview:
- Ecosystem: index.md
- What is Witnet?: overview/concepts.md
- Software: overview/software.md
- Quickstart:
- Run a Node: try/run-a-node.md
- Use the Sheikah wallet / IDE: try/sheikah.md
- Connect your Ethereum contract to an API: try/use-from-ethereum.md
- Tutorials:
- "Beginner: Bitcoin price feed":
- try/my-first-data-request.md
- "Advanced: ":
- try/my-first-data-request.md
- Community:
- Contributing: community/contributing.md
- Open Source: community/open-source.md
- Roadmap: community/roadmap.md
- Protocol Docs:
- protocol/reputation.md
- protocol/sortition.md
- protocol/transactions.md
- protocol/blocks.md
- Data Requests:
- Overview: protocol/data-requests/overview.md
- Encoding: protocol/data-requests/radon-encoding.md
- Examples: protocol/data-requests/examples.md
- protocol/serialization.md
- Operator Docs:
- ethereum/run-a-bridge.md
- Compilation: witnet-rust/compiling.md
- Configuration: witnet-rust/configuration.md
- Command Line Interface: interfaces/cli.md
- Witnet-Rust JSON-RPC: interfaces/json-rpc.md
- Wallet API: interfaces/wallet-api.md
- More:
- overview/glossary.md
theme:
name: 'material'
custom_dir: 'theme'
favicon: 'assets/images/favicon.ico'
logo: 'assets/images/logo.svg" alt="Witnet Logo'
palette:
primary: 'white'
accent: 'deep-purple'
repo_name: 'witnet/documentation'
repo_url: 'https://github.com/witnet/documentation'
edit_uri: 'blob/master/docs'
remote_name: 'upstream'
extra:
og_image: 'assets/images/logo-docs.png'
social:
- type: 'github'
link: 'https://github.com/witnet'
- type: 'reddit'
link: 'https://reddit.com/r/witnet'
- type: 'twitter'
link: 'https://twitter.com/witnet_io'
extra_css:
- 'extra.css'
extra_javascript:
- 'extra.js'
markdown_extensions:
- admonition
- codehilite
- footnotes
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde