-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert docs from Zola to mdBook (#623)
- Loading branch information
Showing
24 changed files
with
341 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Book | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
book: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.0.0 | ||
|
||
- uses: peaceiris/actions-mdbook@v1 | ||
with: | ||
mdbook-version: latest | ||
|
||
- name: Install mdbook-linkcheck | ||
run: | | ||
mkdir -p mdbook-linkcheck | ||
cd mdbook-linkcheck | ||
wget https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/latest/download/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip | ||
unzip mdbook-linkcheck.x86_64-unknown-linux-gnu.zip | ||
chmod +x mdbook-linkcheck | ||
pwd >> $GITHUB_PATH | ||
- run: mdbook build book | ||
|
||
- name: Deploy Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: github.ref == 'refs/heads/master' | ||
with: | ||
github_token: ${{secrets.GITHUB_TOKEN}} | ||
publish_branch: gh-pages | ||
publish_dir: book/build |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
/.idea/ | ||
/.vagrant | ||
/benchmark | ||
/book/build | ||
/docs/public | ||
/index.lmdb | ||
/index.redb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[book] | ||
title = "Ordinal Hunter's Manual" | ||
language = "en" | ||
multilingual = false | ||
src = "src" | ||
|
||
[build] | ||
build-dir = "build" | ||
create-missing = false | ||
|
||
[output.html] | ||
cname = "docs.ordinals.com" | ||
git-repository-url = "https://github.com/casey/ord" | ||
|
||
[output.linkcheck] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Summary | ||
|
||
- [Theory](./theory.md) | ||
- [FAQ](./faq.md) | ||
- [Ordinal Hunting](./hunting.md) | ||
|
||
- [Bounties](./bounty.md) | ||
- [Bounty 0: 100,000 sats Claimed!](./bounty/0.md) | ||
- [Bounty 1: 200,000 sats Claimed!](./bounty/1.md) | ||
- [Bounty 2: 300,000 sats](./bounty/2.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
+++ | ||
title = "FAQ" | ||
+++ | ||
Ordinal FAQ | ||
=========== | ||
|
||
How many ordinals will there be? | ||
-------------------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.