Browse Source

Add title and description to doc files

patch-2
Yemel Jardi 10 years ago
parent
commit
a1ceb0e8dc
  1. 3
      docs/api/index.md
  2. 3
      docs/guide/address.md
  3. 3
      docs/guide/block.md
  4. 3
      docs/guide/crypto.md
  5. 3
      docs/guide/ecies.md
  6. 3
      docs/guide/encoding.md
  7. 3
      docs/guide/hierarchical.md
  8. 3
      docs/guide/jsonrpc.md
  9. 3
      docs/guide/networks.md
  10. 3
      docs/guide/paymentprotocol.md
  11. 3
      docs/guide/peer.md
  12. 3
      docs/guide/pool.md
  13. 3
      docs/guide/privatekey.md
  14. 3
      docs/guide/publickey.md
  15. 3
      docs/guide/script.md
  16. 3
      docs/guide/transaction.md
  17. 3
      docs/guide/unit.md
  18. 3
      docs/guide/uri.md

3
docs/api/index.md

@ -1,3 +1,6 @@
title: Bitcore Examples
description: Sample code for the most common task in any bitcoin application.
---
# Examples
## Create a Private Key

3
docs/guide/address.md

@ -1,3 +1,6 @@
title: Address
description: A simple interface to generate and validate a bitcoin address.
---
# Address
## Description

3
docs/guide/block.md

@ -1,3 +1,6 @@
title: Block
description: A simple interface to parse and validate a bitcoin blocks.
---
# Block
## Description

3
docs/guide/crypto.md

@ -1,3 +1,6 @@
title: Crypto
description: Primitives and tools to deal with bitcoin cryptography.
---
# Crypto
## Description

3
docs/guide/ecies.md

@ -1,3 +1,6 @@
title: ECIES
description: Perform bulk encryption on data using a symmetric cipher and a random key.
---
# ECIES
## Description

3
docs/guide/encoding.md

@ -1,3 +1,6 @@
title: Encoding
description: Utilities for encoding information in bitcoin standard formats.
---
# Encoding
## Description

3
docs/guide/hierarchical.md

@ -1,3 +1,6 @@
title: HD Keys
description: Hierarichically derived keys support, let's you create and derive extended public and private keys.
---
# HDKeys
## Hierarichically Derived Keys

3
docs/guide/jsonrpc.md

@ -1,3 +1,6 @@
title: JSON-RPC
description: A simple interface to connect and make RPC calls to bitcoind.
---
# JSON-RPC
## Description

3
docs/guide/networks.md

@ -1,3 +1,6 @@
title: Networks
description: A simple interface to handle livenet and testnet bitcoin networks.
---
# Networks
## Description

3
docs/guide/paymentprotocol.md

@ -1,3 +1,6 @@
title: Payment Protocol
description: A powerful interface for serialize, deserialize, sign and verify payment protocol messsages.
---
# Payment Protocol
## Description

3
docs/guide/peer.md

@ -1,3 +1,6 @@
title: Peer
description: The Peer class privides a simple interface for connecting to a node in the bitcoin network.
---
# Peer
## Description

3
docs/guide/pool.md

@ -1,3 +1,6 @@
title: Pool
description: A simple interface to create and maintain a set of connections to bitcoin nodes.
---
# Pool
## Pool

3
docs/guide/privatekey.md

@ -1,3 +1,6 @@
title: Private Key
description: A simple interface to generate, import and handle private keys.
---
# Private Key
## Description

3
docs/guide/publickey.md

@ -1,3 +1,6 @@
title: Public Key
description: A simple interface for handling private keys.
---
# Public Key
## Description

3
docs/guide/script.md

@ -1,3 +1,6 @@
title: Script
description: A powerful interface to create, parse and validate bitcoin scripts.
---
# Script
## Description

3
docs/guide/transaction.md

@ -1,3 +1,6 @@
title: Transaction
description: A robust interface to create, parse and validate bitcoin transactions.
---
# Transaction
## Description

3
docs/guide/unit.md

@ -1,3 +1,6 @@
title: Bitcoin Units
description: Utility to easily convert between bitcoin units.
---
# Unit
## Description

3
docs/guide/uri.md

@ -1,3 +1,6 @@
title: Bitcoin URIs
description: Utility to parse and create standard bitcoin URIs.
---
# URI
## Description

Loading…
Cancel
Save