Merge pull request #1 from zcash/book-skeleton

Book skeleton
This commit is contained in:
str4d 2020-10-28 18:08:07 +00:00 committed by GitHub
commit 4a4d7ea818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 31 additions and 3 deletions

View File

@ -39,6 +39,18 @@ jobs:
command: build
args: --all --benches
book:
name: Book tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.4'
- name: Test Pollard book
run: mdbook test book/
clippy:
name: Clippy (stable)
timeout-minutes: 30

1
book/src/README.md Normal file
View File

@ -0,0 +1 @@
{{#include ../../README.md}}

View File

@ -1,3 +1,11 @@
# Summary
# The Pollard Book
- [Chapter 1](./chapter_1.md)
[Pollard](README.md)
- [Concepts](concepts.md)
- [Preliminaries](concepts/preliminaries.md)
- [User Documentation](user.md)
- [Creating keys and addresses](user/keys.md)
- [Creating notes](user/creating-notes.md)
- [Spending notes](user/spending-notes.md)
- [Integration into an existing chain](user/integration.md)
- [Design](design.md)

View File

@ -1 +0,0 @@
# Chapter 1

1
book/src/concepts.md Normal file
View File

@ -0,0 +1 @@
# Concepts

View File

@ -0,0 +1 @@
# Preliminaries

1
book/src/design.md Normal file
View File

@ -0,0 +1 @@
# Design

1
book/src/user.md Normal file
View File

@ -0,0 +1 @@
# User Documentation

View File

@ -0,0 +1 @@
# Creating notes

View File

@ -0,0 +1 @@
# Integration into an existing chain

1
book/src/user/keys.md Normal file
View File

@ -0,0 +1 @@
# Creating keys and addresses

View File

@ -0,0 +1 @@
# Spending notes