-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
58 lines (53 loc) · 1.37 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
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: Vaultaire
repo_name: Vaultaire
repo_url: https://github.com/manosbatsis/vaultaire
site_description: "Query DSL and data access utilities for Corda developers."
site_author: Manos Batsis
remote_branch: gh-pages
google_analytics: ['UA-131279953-1', 'manosbatsis.github.io']
copyright: 'Copyright © 2019 Manos Batsis'
theme:
name: 'material'
# logo: 'images/icon-square.png'
# favicon: 'images/icon-square.png'
palette:
primary: 'cyan'
accent: 'deep-purple'
#extra_css:
# - 'css/app.css'
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- tables
- admonition
nav:
- 'Overview': index.md
- 'Installation': installation.md
- 'Core Features':
- 'Query DSL': core/query-dsl.md
- 'State Services': core/state-services.md
- 'State DTOs': core/state-dtos.md
- 'Other Utilities': core/other-utils.md
- 'Plugins':
- 'Corda Accounts': plugins/corda-accounts.md
- 'RSQL Support': plugins/rsql-support.md
- 'API Reference': 0.x/index.md
- 'FAQ': faq.md
- 'Change Log': changelog.md
- 'Credits': credits.md