mirror of
https://github.com/monero-project/monero-docs.git
synced 2024-12-23 03:59:23 +00:00
73 lines
2.6 KiB
YAML
73 lines
2.6 KiB
YAML
# Project information
|
|
site_name: Monero Documentation
|
|
site_description: 'Unofficial Monero Documentation'
|
|
site_author: "Piotr 'Qertoip' Włodarek"
|
|
site_url: 'https://monerodocs.org/'
|
|
|
|
nav:
|
|
- Home: 'index.md'
|
|
- Interacting:
|
|
- Download: 'interacting/download-monero-binaries.md'
|
|
- Verify: 'interacting/verify-monero-binaries.md'
|
|
- What is what overview: 'interacting/overview.md'
|
|
- monerod: 'interacting/monerod-reference.md'
|
|
- monero-wallet-cli: 'interacting/monero-wallet-cli-reference.md'
|
|
- monero-wallet-gui: 'interacting/monero-wallet-gui-reference.md'
|
|
- monero-blockchain-export: 'interacting/monero-blockchain-export-reference.md'
|
|
- monero-blockchain-import: 'interacting/monero-blockchain-import-reference.md'
|
|
- Config file: 'interacting/monero-config-file.md'
|
|
- Technical specs: 'technical-specs.md'
|
|
- Cryptography:
|
|
- Introduction: 'cryptography/introduction.md'
|
|
- Asymmetric:
|
|
- 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'
|
|
- PRNG: 'cryptography/prng.md'
|
|
- 'Keccak-256': 'cryptography/keccak-256.md'
|
|
- Address:
|
|
- Standard: 'public-address/standard-address.md'
|
|
- Subaddress: 'public-address/subaddress.md'
|
|
- Integrated: 'public-address/integrated-address.md'
|
|
- Proof of Work:
|
|
- 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'
|
|
- Multisignature: 'multisignature.md'
|
|
- Infrastructure:
|
|
- Mainnet, stagenet, testnet: 'infrastructure/networks.md'
|
|
- MoneroPulse: 'infrastructure/monero-pulse.md'
|
|
- Accepting Monero:
|
|
- Overview: 'accepting-monero/overview.md'
|
|
|
|
theme:
|
|
name: 'material'
|
|
palette:
|
|
# primary: 'Indigo'
|
|
# primary: 'Deep Orange'
|
|
# primary: 'Orange'
|
|
primary: 'White'
|
|
accent: 'Indigo'
|
|
logo: 'images/monero.svg'
|
|
language: 'en'
|
|
# feature:
|
|
# tabs: true
|
|
|
|
extra_css: ['extra.css', 'overrides.css']
|
|
|
|
repo_name: 'monerodocs/md'
|
|
repo_url: 'https://github.com/monerodocs/md'
|
|
|
|
markdown_extensions:
|
|
# https://squidfunk.github.io/mkdocs-material/extensions/admonition/
|
|
- markdown.extensions.admonition
|
|
- markdown.extensions.codehilite:
|
|
guess_lang: false
|
|
- markdown.extensions.def_list
|
|
- markdown.extensions.footnotes
|
|
- markdown.extensions.meta
|
|
- markdown.extensions.toc:
|
|
permalink: true
|