A Rust library/application to render a collection of books to EPUB using forked mdbook-epub. It uses Tera template engine to render an optional template.
Used to generate the Rust eBookshelf nightly.
The configuration is handled through a bookshelf.toml file.
title = "The Rust Language & Ecosystem"
destination-dir = "out"
templates-dir = "templates"
working-dir = "tmp"
[[book]]
repo-url = "https://github.com/rust-lang/book.git"
url = "https://doc.rust-lang.org/stable/book/index.html"
[book.env-var]
MDBOOK_PREPROCESSOR__NOCOMMENT = ""
[[book]]
repo-url = "https://github.com/rust-lang/rust-by-example.git"
url = "https://doc.rust-lang.org/stable/rust-by-example/"
[[book]]
repo-url = "https://github.com/rust-lang-nursery/rust-cookbook.git"
url = "https://github.com/rust-lang-nursery/rust-cookbook"mdBook build-in preprocessors is enabled tranparently and is affected by book.yaml per Book if there is any. If you want to filter with custom preprocessors, using book.env-var, like the conf above, to specify special enviroment variables that could be accepted by mdBook. And don't forget to install preprocessors before building your bookshelf, or it would just generate books without these preprocessors.
USAGE:
mdbookshelf [OPTIONS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-d, --destination_dir <DESTINATION_DIR> Sets the destination directory
-t, --templates_dir <TEMPLATES_DIR> Sets the templates directory (if not set, will generate manifest.json)
-w, --working_dir <WORKING_DIR> Sets a custom working directory where the book repositories will be
cloned
-c, --config <CONFIG_PATH> Sets the path of configuration file
The options can be used to override values specified in bookshelf.toml.
- Cleanup some code - this is my very first Rust code. I wrote this while still reading the Book (to be able to finish it on my Kindle). If you know of things that are not idiomatic or could be done better, please do not hesitate ;)
- Fix a bug or implement a new thing
- Make a Pull Request
- 0.4.0 Add option to specify bookshelf.toml and bug fixes
- 0.3.0 Support custom book preprocessing
- 0.2.0 Forked with custom epub-builder & mdbook-epub
- 0.1.1 Updated README
- 0.1.0 First release
Licensed under the MIT license http://opensource.org/licenses/MIT. This file may not be copied, modified, or distributed except according to those terms.