From e325389026f3f230923e5d9c69e4710fd381fc96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C5=82odarek?= Date: Thu, 13 Sep 2018 17:00:46 +0200 Subject: [PATCH] Improve article titles to improve Google findability --- docs/cryptography/asymmetric/edwards25519.md | 5 ++++- docs/cryptography/asymmetric/introduction.md | 5 ++++- docs/cryptography/asymmetric/key-image.md | 5 ++++- docs/cryptography/asymmetric/private-key.md | 5 ++++- docs/cryptography/asymmetric/public-key.md | 5 ++++- docs/cryptography/base58.md | 3 +++ docs/cryptography/cryptonight.md | 3 +++ docs/cryptography/introduction.md | 3 +++ docs/cryptography/keccak-256.md | 5 ++++- docs/cryptography/pedersen-commitment.md | 3 +++ docs/cryptography/prng.md | 3 +++ docs/index.md | 5 ++++- docs/interacting/monerod/overview.md | 3 +++ docs/interacting/monerod/reference.md | 2 +- docs/interacting/overview.md | 2 +- docs/multisignature.md | 3 +++ docs/networks.md | 3 +++ docs/public-address/integrated-address.md | 5 ++++- docs/public-address/main-address.md | 3 +++ docs/public-address/subaddress.md | 3 +++ docs/technical-specs.md | 3 +++ docs/tx.md | 3 +++ 22 files changed, 70 insertions(+), 10 deletions(-) diff --git a/docs/cryptography/asymmetric/edwards25519.md b/docs/cryptography/asymmetric/edwards25519.md index 3ad4efd..c605bfd 100644 --- a/docs/cryptography/asymmetric/edwards25519.md +++ b/docs/cryptography/asymmetric/edwards25519.md @@ -1,4 +1,7 @@ -# Edwards25519 elliptic curve +--- +title: Edwards25519 Elliptic Curve | Monero Documentation +--- +# Edwards25519 Elliptic Curve !!! note Author is nowhere close to being a cryptographer. Be sceptical on accuracy. diff --git a/docs/cryptography/asymmetric/introduction.md b/docs/cryptography/asymmetric/introduction.md index c172e0f..4bc1333 100644 --- a/docs/cryptography/asymmetric/introduction.md +++ b/docs/cryptography/asymmetric/introduction.md @@ -1,4 +1,7 @@ -# Asymmetric cryptography in Monero +--- +title: Asymmetric Cryptography in Monero | Monero Documentation +--- +# Asymmetric Cryptography in Monero !!! note Author is nowhere close to being a cryptographer. Be sceptical on accuracy. diff --git a/docs/cryptography/asymmetric/key-image.md b/docs/cryptography/asymmetric/key-image.md index 8d52010..a3a263c 100644 --- a/docs/cryptography/asymmetric/key-image.md +++ b/docs/cryptography/asymmetric/key-image.md @@ -1,4 +1,7 @@ -# Monero private key image +--- +title: Monero Private Key Image | Monero Documentation +--- +# Monero Private Key Image !!! note Author is nowhere close to being a cryptographer. Be sceptical on accuracy. diff --git a/docs/cryptography/asymmetric/private-key.md b/docs/cryptography/asymmetric/private-key.md index 98bbca0..0a58d46 100644 --- a/docs/cryptography/asymmetric/private-key.md +++ b/docs/cryptography/asymmetric/private-key.md @@ -1,4 +1,7 @@ -# Private keys in Monero +--- +title: Private Keys in Monero | Monero Documentation +--- +# Private Keys in Monero !!! note Author is nowhere close to being a cryptographer. Be sceptical on accuracy. diff --git a/docs/cryptography/asymmetric/public-key.md b/docs/cryptography/asymmetric/public-key.md index b0b28d8..3d83fcf 100644 --- a/docs/cryptography/asymmetric/public-key.md +++ b/docs/cryptography/asymmetric/public-key.md @@ -1,4 +1,7 @@ -# Public keys in Monero +--- +title: Public Keys in Monero | Monero Documentation +--- +# Public Keys in Monero !!! note Author is nowhere close to being a cryptographer. Be sceptical on accuracy. diff --git a/docs/cryptography/base58.md b/docs/cryptography/base58.md index 811aa1d..8df0384 100644 --- a/docs/cryptography/base58.md +++ b/docs/cryptography/base58.md @@ -1,3 +1,6 @@ +--- +title: Base58 | Monero Documentation +--- # Base58 Base58 is a binary-to-text encoding scheme. It is similar to Base64 but has been modified to avoid both non-alphanumeric characters and letters which might look ambiguous when printed. The characters excluded in relation to Base64 are: `IOl0+/` diff --git a/docs/cryptography/cryptonight.md b/docs/cryptography/cryptonight.md index 5169218..19ea9c8 100644 --- a/docs/cryptography/cryptonight.md +++ b/docs/cryptography/cryptonight.md @@ -1,3 +1,6 @@ +--- +title: CryptoNight Proof of Work | Monero Documentation +--- # CryptoNight Proof of Work Possibly the most controversial aspect of Monero (and other CryptoNote coins) is the CryptoNight Proof of Work, diff --git a/docs/cryptography/introduction.md b/docs/cryptography/introduction.md index 511600c..5c564a7 100644 --- a/docs/cryptography/introduction.md +++ b/docs/cryptography/introduction.md @@ -1,3 +1,6 @@ +--- +title: Cryptography in Monero | Monero Documentation +--- # Cryptography in Monero Monero uses a wide variety of cryptographic primitives for various use cases. diff --git a/docs/cryptography/keccak-256.md b/docs/cryptography/keccak-256.md index 2e5c937..54e9fdd 100644 --- a/docs/cryptography/keccak-256.md +++ b/docs/cryptography/keccak-256.md @@ -1,4 +1,7 @@ -# Keccak-256 hash function +--- +title: Keccak-256 Hash Function | Monero Documentation +--- +# Keccak-256 Hash Function Monero employs Keccak as a hashing function. In most context specifically Keccak-256 is used, providing 32-byte hashes. diff --git a/docs/cryptography/pedersen-commitment.md b/docs/cryptography/pedersen-commitment.md index f047f6c..7a7a7cc 100644 --- a/docs/cryptography/pedersen-commitment.md +++ b/docs/cryptography/pedersen-commitment.md @@ -1,3 +1,6 @@ +--- +title: Pedersen Commitment | Monero Documentation +--- # Pedersen Commitment https://www.reddit.com/r/Monero/comments/9ed7vb/pedersen_commitment/ diff --git a/docs/cryptography/prng.md b/docs/cryptography/prng.md index 58e0f7c..0a4c335 100644 --- a/docs/cryptography/prng.md +++ b/docs/cryptography/prng.md @@ -1,3 +1,6 @@ +--- +title: Monero Pseudorandom Number Generator | Monero Documentation +--- # Monero Pseudorandom Number Generator Monero uses PRNG based on the Keccak hashing function. diff --git a/docs/index.md b/docs/index.md index 3c09dd4..69616e5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,7 @@ -# Unofficial Monero Documentation (4% done) +--- +title: Monero Documentation +--- +# Unofficial Monero Documentation (work in progress) Monerodocs attempts to organize basic technical knowledge on Monero in one place. diff --git a/docs/interacting/monerod/overview.md b/docs/interacting/monerod/overview.md index 29c7e1b..018e971 100644 --- a/docs/interacting/monerod/overview.md +++ b/docs/interacting/monerod/overview.md @@ -1,3 +1,6 @@ +--- +title: monerod - Overview | Monero Documentation +--- # `monerod` ## Connects you to Monero network diff --git a/docs/interacting/monerod/reference.md b/docs/interacting/monerod/reference.md index 8d3bb2b..c7f92ee 100644 --- a/docs/interacting/monerod/reference.md +++ b/docs/interacting/monerod/reference.md @@ -1,5 +1,5 @@ --- -title: monerod - reference | Monero Documentation +title: monerod - Reference | Monero Documentation --- # `monerod` - reference diff --git a/docs/interacting/overview.md b/docs/interacting/overview.md index d3a9c8d..307880a 100644 --- a/docs/interacting/overview.md +++ b/docs/interacting/overview.md @@ -1,5 +1,5 @@ --- -title: Interacting with Monero +title: Interacting with Monero | Monero Documentation --- # Interacting with Monero diff --git a/docs/multisignature.md b/docs/multisignature.md index fb8089f..1dbbcc5 100644 --- a/docs/multisignature.md +++ b/docs/multisignature.md @@ -1,3 +1,6 @@ +--- +title: Multisignature | Monero Documentation +--- # Multisignature In cryptocurrencies, multisig feature allows to sign transaction with more than one private key. Funds protected with multisig can only be spent by signing with M-of-N keys. diff --git a/docs/networks.md b/docs/networks.md index 8096e01..81a5a39 100644 --- a/docs/networks.md +++ b/docs/networks.md @@ -1,3 +1,6 @@ +--- +title: Mainnet, Stagenet, Testnet | Monero Documentation +--- # Networks Monero offers three separate networks and blockchains: **mainnet**, **stagenet** and **testnet**. Every blockchain has its own genesis block and is entirely seperate from others. Also, corresponding p2p networks are separate. diff --git a/docs/public-address/integrated-address.md b/docs/public-address/integrated-address.md index 3496bbc..3a9143e 100644 --- a/docs/public-address/integrated-address.md +++ b/docs/public-address/integrated-address.md @@ -1,4 +1,7 @@ -# Integrated address +--- +title: Integrated Address | Monero Documentation +--- +# Integrated Address Integrated addresses are ideal for accepting Monero in an automated fashion - like in online stores and exchanges. diff --git a/docs/public-address/main-address.md b/docs/public-address/main-address.md index 6732b69..eafd9cd 100644 --- a/docs/public-address/main-address.md +++ b/docs/public-address/main-address.md @@ -1,3 +1,6 @@ +--- +title: Main Address | Monero Documentation +--- # Address Monero public address is what you publish to get paid. diff --git a/docs/public-address/subaddress.md b/docs/public-address/subaddress.md index e625206..240e828 100644 --- a/docs/public-address/subaddress.md +++ b/docs/public-address/subaddress.md @@ -1,3 +1,6 @@ +--- +title: Subaddress | Monero Documentation +--- # Subaddress Subaddress is what you should be using by default to receive Monero. diff --git a/docs/technical-specs.md b/docs/technical-specs.md index ad2e323..9494a41 100644 --- a/docs/technical-specs.md +++ b/docs/technical-specs.md @@ -1,3 +1,6 @@ +--- +title: Monero Technical Specification | Monero Documentation +--- # Monero Technical Specs ## Live diff --git a/docs/tx.md b/docs/tx.md index da54b50..d5dbf72 100644 --- a/docs/tx.md +++ b/docs/tx.md @@ -1,3 +1,6 @@ +--- +title: Transaction | Monero Documentation +--- # Monero transaction https://monero.stackexchange.com/questions/2136/understanding-the-structure-of-a-monero-transaction?noredirect=1&lq=1