We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Init rust env
source ~/.bashrc cargo install mdbook cargo install mdbook-epub
The mdbook build-time needs to connect github, I use proxy:
export https_proxy=http://xxxx:xx export http_proxy=http://xxxx:xx
Then clone
git clone https://github.com/sunface/rust-course.git cd rust-course
Add below content to the end of book.toml and save it. This will use mdbook-epub as render backend.
[output.epub]
Then run:
RUST_LOG=debug mdbook build
With RUST_LOG=debug, there will be some logs and you can solve the stuck or error.
RUST_LOG=debug
And the book will gnerate at rust-course/book/epub dir.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Install rust:
Init rust env
The mdbook build-time needs to connect github, I use proxy:
Then clone
git clone https://github.com/sunface/rust-course.git cd rust-course
Add below content to the end of book.toml and save it.
This will use mdbook-epub as render backend.
Then run:
With
RUST_LOG=debug
, there will be some logs and you can solve the stuck or error.And the book will gnerate at rust-course/book/epub dir.
The text was updated successfully, but these errors were encountered: