forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
52 lines (49 loc) · 1.21 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
site_name: Core Lightning
docs_dir: doc
use_directory_urls: false
plugins:
- search
- exclude:
regex:
- ".*\\.[1578]$"
theme:
name: material
features:
- search.suggest
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.indexes
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
toc_depth: 2
nav:
- "Welcome": index.md
- Users:
- Installation: "INSTALL.md"
- "Frequently Asked Question": "FAQ.md"
- "TOR": "TOR.md"
- Developers:
- dev/index.md
- "Developing a plugin": PLUGINS.md
- "Contributors":
- dev/contributors/index.md
- "Writing JSON Schemas": schemas/WRITING_SCHEMAS.md
- Fuzzing: FUZZING.md
- "Reproducible Builds": REPRODUCIBLE.md
- "Coding Style": STYLE.md
- Reference:
- reference/index.md
- "Man Pages":
- lightningd-rpc: lightningd-rpc.7.md
- "lightning-withdraw": "./lightning-withdraw.7.md"
- About:
- Changelog: "CHANGELOG.md"
- License: "LICENSE.md"