6d0d4bf379
From the [pull request comment][pr], here's a rough summary of what was done in the squashed commits. --- \# Summary Parser - Added a private submodule called `mdbook::loader::summary` which contains all the code for parsing `SUMMARY.md` - A `Summary` contains a title (optional), then some prefix, numbered, and suffix chapters (technically `Vec<SummaryItem>`) - A `SummaryItem` is either a `Link` (i.e. link to a chapter), or a separator - A `Link` contains the chapter name, its location relative to the book's `src/` directory, and a list of nested `SummaryItems` - The `SummaryParser` (a state machine-based parser) uses `pulldown_cmark` to turn the `SUMMARY.md` string into a stream of `Events`, it then iterates over those events changing its behaviour depending on the current state, - The states are `Start`, `PrefixChapters`, `NestedChapters(u32)` (the `u32` represents your nesting level, because lists can contain lists), `SuffixChapters`, and `End` - Each state will read the appropriate link and build up the `Summary`, skipping any events which aren't a link, horizontal rule (separator), or a list \# Loader - Created a basic loader which can be used to load the `SUMMARY.md` in a directory. \# Tests - Added a couple unit tests for each state in the parser's state machine - Added integration tests for parsing a dummy SUMMARY.md then asserting the result is exactly what we expected [pr]: https://github.com/azerupi/mdBook/pull/371#issuecomment-312636102 |
||
---|---|---|
book-example | ||
ci | ||
src | ||
tests | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
CONTRIBUTING.md | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
appveyor.yml | ||
build.rs | ||
rustfmt.toml |
README.md
mdBook
Linux / OS X | |
Windows | |
mdBook is a utility to create modern online books from Markdown files.
What does it look like?
The Documentation for mdBook has been written in Markdown and is using mdBook to generate the online book-like website you can read. The documentation uses the latest version on GitHub and showcases the available features.
Installation
There are multiple ways to install mdBook.
-
Binaries
Binaries are available for download here. Make sure to put the path to the binary into yourPATH
. -
From Crates.io
This requires Rust and Cargo to be installed. Once you have installed Rust, type the following in the terminal:cargo install mdbook
This will download and compile mdBook for you, the only thing left to do is to add the Cargo bin directory to your
PATH
.Note for automatic deployment
If you are using a script to do automatic deployments using Travis or another CI server, we recommend that you specify a semver version range for mdBook when you install it through your script! This will constrain the server to install the latests non-breaking version of mdBook and will prevent your books from failing to build because we released a new version. For example:cargo install mdbook --vers "^0.1.0"
-
From Git
The version published to crates.io will ever so slightly be behind the version hosted here on GitHub. If you need the latest version you can build the git version of mdBook yourself. Cargo makes this super easy!cargo install --git https://github.com/azerupi/mdBook.git
Again, make sure to add the Cargo bin directory to your
PATH
. -
For Contributions
If you want to contribute to mdBook you will have to clone the repository on your local machine:git clone https://github.com/azerupi/mdBook.git
cd
intomdBook/
and runcargo build
The resulting binary can be found in
mdBook/target/debug/
under the namemdBook
ormdBook.exe
.
Usage
mdBook will primarily be used as a command line tool, even though it exposes all its functionality as a Rust crate for integration in other projects.
Here are the main commands you will want to run. For a more exhaustive explanation, check out the documentation.
-
mdbook init
The init command will create a directory with the minimal boilerplate to start with.
book-test/ ├── book └── src ├── chapter_1.md └── SUMMARY.md
book
andsrc
are both directories.src
contains the markdown files that will be used to render the output to thebook
directory.Please, take a look at the Documentation for more information and some neat tricks.
-
mdbook build
This is the command you will run to render your book, it reads the
SUMMARY.md
file to understand the structure of your book, takes the markdown files in the source directory as input and outputs static html pages that you can upload to a server. -
mdbook watch
When you run this command, mdbook will watch your markdown files to rebuild the book on every change. This avoids having to come back to the terminal to type
mdbook build
over and over again. -
mdbook serve
Does the same thing as
mdbook watch
but additionally serves the book athttp://localhost:3000
(port is changeable) and reloads the browser when a change occurs.
As a library
Aside from the command line interface, this crate can also be used as a library. This means that you could integrate it in an existing project, like a web-app for example. Since the command line interface is just a wrapper around the library functionality, when you use this crate as a library you have full access to all the functionality of the command line interface with an easy to use API and more!
See the Documentation and the API docs for more information.
Contributions
Contributions are highly appreciated and encouraged! Don't hesitate to participate to discussions in the issues, propose new features and ask for help.
If you are just starting out with Rust, there are a series of issus that are tagged E-Easy and we will gladly mentor you so that you can successfully go through the process of fixing a bug or adding a new feature! Let us know if you need any help.
For more info about contributing, check out our contribution guide who helps you go through the build and contribution process!
License
All the code in this repository is released under the Mozilla Public License v2.0, for more information take a look at the LICENSE file.