-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
235 lines (226 loc) · 6.85 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# Project information
site_name: Monero Docs
site_description: 'Monero Documentation'
site_author: "Monero Community"
site_url: 'https://docs.getmonero.org'
site_dir: 'public'
copyright: '© 2024 Monero Community under <a href="https://opensource.org/licenses/MIT">MIT</a>'
nav:
- Home: 'index.md'
- Interacting:
- The Basics:
- Overview: 'interacting/overview.md'
- Tokenomics: 'technical-specs.md'
- Networks: 'infrastructure/networks.md'
- Download & Verify:
- Download: 'interacting/download-monero-binaries.md'
- Verify: 'interacting/verify-monero-binaries.md'
- Monerod:
- Flags: 'interacting/monerod-reference.md'
- Setup Guide:
- Systemd: 'running-node/monerod-systemd.md'
- Tor & I2P: 'running-node/monerod-tori2p.md'
- Sample Configs:
- Home: 'interacting/monero-config-file.md'
- Wallets:
- monero-wallet-gui: 'interacting/monero-wallet-gui-reference.md'
- monero-wallet-cli: 'interacting/monero-wallet-cli-reference.md'
- monero-wallet-rpc: 'interacting/monero-wallet-rpc-reference.md'
- Advanced Transactions:
- Multisignature: 'multisignature.md'
- Offline Transaction Signing: 'cold-storage/offline-transaction-signing.md'
- Blockchain Tools:
- monero-blockchain-export: 'interacting/monero-blockchain-export-reference.md'
- monero-blockchain-import: 'interacting/monero-blockchain-import-reference.md'
- External:
- MoneroPulse: 'infrastructure/monero-pulse.md'
- RPC Library:
- Node RPC: 'rpc-library/monerod-rpc.md'
- Wallet RPC: 'rpc-library/wallet-rpc.md'
- R&D:
- Cryptography:
- Introduction: 'cryptography/introduction.md'
- Asymmetric: # Needs clarity
- Introduction: 'cryptography/asymmetric/introduction.md'
- Private keys: 'cryptography/asymmetric/private-key.md'
- Public keys: 'cryptography/asymmetric/public-key.md'
- Edwards25519 curve: 'cryptography/asymmetric/edwards25519.md'
- Key image: 'cryptography/asymmetric/key-image.md'
- Base58: 'cryptography/base58.md'
- Keccak-256: 'cryptography/keccak-256.md'
- PRNG: 'cryptography/prng.md'
- Address Types:
- Standard: 'public-address/standard-address.md'
- Subaddress: 'public-address/subaddress.md'
- Integrated: 'public-address/integrated-address.md'
- Proof of Work: # This section needs improvement
- What is PoW?: 'proof-of-work/what-is-pow.md'
- PoW in Cryptocurrencies: 'proof-of-work/pow-in-cryptocurrencies.md'
- CryptoNight: 'proof-of-work/cryptonight.md'
- RandomX: 'proof-of-work/random-x.md'
#- Accepting Monero:
# - Overview: 'accepting-monero/overview.md'
theme:
name: material
custom_dir: overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.code.select
# - content.footnote.tooltips
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.footer
- navigation.indexes
# - navigation.instant
# - navigation.instant.prefetch
# - navigation.instant.progress
# - navigation.path
# - navigation.prune
# - navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/weather-sunny
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
favicon: images/favicon.ico
icon:
logo: logo
logo: 'images/monero.svg'
static_templates:
- 404.html
extra_css:
- overrides.css
extra:
social:
- icon: material/web
link: https://docs.getmonero.org
name: Clearnet Website
- icon: simple/torbrowser
link: http://xmrdoc6phnvjbf5hmjbwdfu47zavzfngymlnwhs2gyxxpxmad4c65kyd.onion
name: Tor Onion
- icon: custom/i2p
link: http://xmrdoc6k4licya7zsnba5s7vugzo72blcpukkvqno75o4ruhaqla.b32.i2p
name: I2P Eepsite
- icon: fontawesome/brands/github
link: https://github.com/monero-project/monero-docs
name: GitHub Repository
- icon: simple/matrix
link: https://matrix.to/#/%23monero-docs:monero.social
name: Matrix
- icon: simple/liberadotchat
link: https://web.libera.chat/#monero-docs
name: IRC via Libera.chat
repo_name: 'monero-project/monero-docs'
repo_url: 'https://github.com/monero-project/monero-docs'
# todo: change to master branch
edit_uri: blob/master/docs/
markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/extensions/admonition/
- admonition
- abbr
- def_list
- attr_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.details
- pymdownx.highlight:
use_pygments: true # build time highlighting, not client side
- pymdownx.inlinehilite
- pymdownx.superfences # nest code blocks inside codeblocks
- pymdownx.snippets # insert content from other files
- pymdownx.tabbed:
alternate_style: true
- tables
plugins:
- search
- minify:
minify_html: true
minify_js: true
htmlmin_opts:
remove_comments: true
- privacy
- macros:
include_dir: docs/macros/includes
include_yaml:
- docs/macros/monerod.yml
- i18n:
docs_structure: folder
languages:
- locale: en
default: true
name: English
build: true
- locale: fr
name: Français
build: false
- locale: es
name: Español
build: false
- locale: it
name: Italiano
build: false
- locale: pl
name: Polski
build: false
- locale: ar
name: العربية
build: false
- locale: ru
name: Русский
build: false
- locale: de
name: Deutsch
build: false
- locale: nl
name: Nederlands
build: false
- locale: pt
name: Português
build: false
- locale: tr
name: Türkçe
build: false
- locale: zh
name: 中文 (简体)
build: false
- locale: zh-TW
name: 中文 (繁體)
build: false
- locale: nb
name: Norsk Bokmål
build: false