-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
69 lines (66 loc) · 1.76 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
site_name: ZkSnap Documentation
site_description: A collusion resistant private voting protocol
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- search.suggest
- search.highlight
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Home: index.md
- Guides:
- User Guide: guides/user-guide.md
- Protocol:
- Overview: protocol/overview.md
- Core Components:
- Dual Key System: protocol/components/key-system.md
- Nullifier System: protocol/components/nullifiers.md
- Timelock Encryption: protocol/components/timelock.md
- Zero Knowledge Proofs: protocol/components/zkp.md
- Protocol Phases:
- Setup Phase: protocol/phases/setup.md
- Voting Phase: protocol/phases/voting.md
- Tallying Phase: protocol/phases/tallying.md
- Security:
- Collusion Resistance: security/collusion-resistance.md
- Threat Model: security/threat-model.md
- Attack Vectors: security/attack-vectors.md
- Privacy Guarantees: security/privacy.md
- Technical Details:
- Cryptographic Primitives: technical/crypto-primitives.md
- Circuit Design: technical/circuits.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- tables
- def_list
- footnotes
- toc:
permalink: true
- attr_list
- md_in_html
plugins:
- search
- minify:
minify_html: true
- mkdocs-pdf