Skip to content

Commit 2bfcd8b

Browse files
authored
Use HonKit instead of GitBook (#720)
1 parent 532f7cf commit 2bfcd8b

File tree

7 files changed

+52
-14
lines changed

7 files changed

+52
-14
lines changed

.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Before continuing, please be sure you have read the [How to contribute guide for
1111
1212
1. discussed the chapter with James Schloss (Leios) first and know where this chapter fits into the broader scope of the project
1313
2. edited the Markdown file with the appropriate line numbers for your submission
14-
3. built the algorithm archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch
14+
3. built the algorithm archive with `npm install && npm run serve` to make sure your code can be seen on your branch
1515
4. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for the initial submission language, if available
1616
5. agreed to share your chapter under [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en)
1717

.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Thanks for submitting code to the Algorithm Archive!
99
Before continuing, please be sure you have read the [How to contribute guide for code submission](https://github.com/algorithm-archivists/algorithm-archive/wiki/How-to-Contribute#step-3---submitting-code) and have:
1010
1111
1. edited the Markdown file with the appropriate line numbers for your submission
12-
2. built the Algorithm Archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch
12+
2. built the Algorithm Archive with `npm install && npm run serve` to make sure your code can be seen on your branch
1313
3. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for your language, if available
1414
1515
If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR

.travis.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,23 @@ language: node_js
55
node_js:
66
- "12"
77

8-
install:
9-
- npm install gitbook-cli -g
10-
- gitbook install
11-
128
before_script:
139
- mkdir -p "${TRAVIS_BUILD_DIR}"/build
10+
- CHANGED_FILES=$(git diff --name-only HEAD~1...HEAD .)
11+
- |
12+
if echo $CHANGED_FILES | grep "package.json"
13+
then
14+
cp package.json "${TRAVIS_BUILD_DIR}"/build
15+
fi
1416
1517
script:
16-
- env | sort
17-
- gitbook build . "${TRAVIS_BUILD_DIR}"/build
18+
- |
19+
if echo $CHANGED_FILES | grep "package.json"
20+
then
21+
npm build --reload . ${TRAVIS_BUILD_DIR}/build
22+
else
23+
npm build . ${TRAVIS_BUILD_DIR}/build
24+
fi
1825
1926
after_success:
2027
- |

book.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"gitbook": "3.x.x",
2+
"honkit": ">= 3.0.0",
3+
"root": "./",
34
"plugins": [
4-
"fontsettings",
55
"mathjax@https://github.com/algorithm-archivists/plugin-mathjax",
66
"bibtex-cite",
77
"wordcount",

contents/how_to_contribute/how_to_contribute.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ If you are having trouble with git and version control, please also check out [t
77

88
In addition, we also have an [FAQ](https://github.com/algorithm-archivists/algorithm-archive/wiki/FAQ) and a [code style guide](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide), which is currently being written for all languages submitted to the Algorithm Archive so far.
99

10-
Currently, we are not accepting chapter submissions; however, we will allow for this in the near future.
10+
Currently, we are not accepting chapter submissions; however, we will allow for this in the near future.
1111
For now, here are the basics for submitting code to the Algorithm Archive:
1212

1313
1. **Style**: We are developing a [code style guide](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for all the languages in the Algorithm Archive. For the most part, follow standard style guidelines associated with your language of choice. Your code should be readable and understandable to anyone -- especially those who are new to the language. In addition, remember that your code will be displayed in this book, so try to keep to around 80 columns, try to remove any visual clutter, and keep variable names clean and understandable.
1414
2. **Licensing**: All the code from this project will be under the MIT license found in `LICENSE.md`; however, the text will be under a Creative Commons Attribution-NonCommercial 4.0 International License.
1515
3. **CONTRIBUTORS.md**: After contributing code, please echo your name to the end of `CONTRIBUTORS.md` with `echo "- name" >> CONTRIBUTORS.md`.
16-
4. **Building the Algorithm Archive**: Before every submission, you should build the Algorithm Archive on your own machine. To do this, install GitBook and use `gitbook install` and then `gitbook serve` in the main directory (where `README.md` is). This will provide a local URL to go to to view the archive in your browser of choice. Use this server to make sure your version of the Algorithm Archive works cleanly for the chapter you are updating!
16+
4. **Building the Algorithm Archive**: Before every submission, you should build the Algorithm Archive on your own machine. To do this, install [Node](https://nodejs.org/) and use `npm install` and then `npm run serve` in the main directory (where `README.md` is). This will provide a local URL to go to to view the archive in your browser of choice. Use this server to make sure your version of the Algorithm Archive works cleanly for the chapter you are updating!
1717

1818
To submit code, simply go to the `code/` directory of whatever chapter you want and add another directory for your language of choice.
1919

@@ -28,7 +28,7 @@ Note that to standardize the language capitalization schemes, we ask that each l
2828
This keeps the title in the theme-api consistent across different languages.
2929
Also note that depending on the algorithm, there might be in-text code snippets that also need to be written.
3030

31-
I'll update this page as the project grows.
31+
I'll update this page as the project grows.
3232
If you would like to be a part of the ongoing discussion, please feel free to join our discord server: https://discord.gg/pb976sY.
3333
Thanks for all the support and considering contributing to the Algorithm Archive!
3434

package.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "algorithm-archive",
3+
"description": "A collaborative book on algorithms",
4+
"version": "0.0.1",
5+
"maintainers": [
6+
{
7+
"name": "James Schloss"
8+
}
9+
],
10+
"dependencies": {
11+
"gitbook-plugin-api-language-selector": "git+https://github.com/algorithm-archivists/gitbook-plugin-api-language-selector.git",
12+
"gitbook-plugin-bibtex-cite": "^1.1.0",
13+
"gitbook-plugin-bulk-redirect": "^0.2.1",
14+
"gitbook-plugin-ga": "^2.0.0",
15+
"gitbook-plugin-include-codeblock": "^3.2.2",
16+
"gitbook-plugin-mathjax": "git+https://github.com/algorithm-archivists/plugin-mathjax.git",
17+
"gitbook-plugin-prism": "^2.4.0",
18+
"gitbook-plugin-wordcount": "^0.0.1",
19+
"honkit": "^3.5.2"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "https://github.com/algorithm-archivists/algorithm-archive.git"
24+
},
25+
"license": "MIT",
26+
"scripts": {
27+
"build": "honkit build",
28+
"serve": "honkit serve"
29+
},
30+
"homepage": "https://www.algorithm-archive.org/"
31+
}

update_site.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [ $# -ge 1 ]; then
1616
exit 1
1717
fi
1818

19-
gitbook build . /tmp/algorithm-archivists.github.io
19+
npm run build . /tmp/algorithm-archivists.github.io
2020

2121
if [ $? -ne 0 ]; then
2222
echo "Failed to build the book"

0 commit comments

Comments
 (0)