mdBook/README.md

71 lines
3.6 KiB
Markdown
Raw Normal View History

2015-08-08 07:14:23 +08:00
# mdBook ![Travis-CI](https://travis-ci.org/azerupi/mdBook.svg) [![Crates.io version](https://img.shields.io/crates/v/mdbook.svg)](https://crates.io/crates/mdbook) [![License](https://img.shields.io/crates/l/mdbook.svg)](LICENSE)
2015-07-08 06:04:28 +08:00
Personal implementation of Gitbook in Rust
2015-08-07 18:14:13 +08:00
**This project is still in it's early days.**
2015-07-30 00:52:46 +08:00
For more information about what is left on my to-do list, check the issue tracker
2015-07-08 06:04:28 +08:00
2015-07-30 18:58:54 +08:00
2015-08-07 18:14:13 +08:00
## Example
2015-07-29 20:50:17 +08:00
2015-08-07 18:14:13 +08:00
To have an idea of what a rendered book looks like,take a look at the [**Documentation**](http://azerupi.github.io/mdBook/). It is rendered by the latest version of mdBook.
2015-07-29 21:06:22 +08:00
## Installation
```
git clone --depth=1 https://github.com/azerupi/mdBook.git
cd mdBook
cargo build --release
```
The executable `mdbook` will be in the `./target/release` folder, this should be added to the path.
2015-08-07 18:14:13 +08:00
## Structure
2015-07-29 20:50:17 +08:00
2015-08-07 18:14:13 +08:00
There are two main parts of this project:
- **The library:** The crate is structured so that all the code that actually does something is part of the library. You could therefore easily hook mdbook into your existing project, extend it's functionality by wrapping it in some other code, etc.
- **The binary:** Is just a wrapper around the library functionality providing a nice and easy command line interface.
2015-07-29 20:50:17 +08:00
2015-08-07 18:14:13 +08:00
### Command line interface
2015-07-19 21:52:27 +08:00
2015-07-29 20:02:05 +08:00
#### init
2015-07-19 21:52:27 +08:00
2015-07-29 20:02:05 +08:00
If you run `mdbook init` in a directory, it will create a couple of folders and files you can start with.
This is the strucutre it creates at the moment:
```
book-test/
├── book
└── src
├── chapter_1.md
└── SUMMARY.md
```
`book` and `src` are both directories. `src` contains the markdown files that will be used to render the ouput to the `book` directory.
2015-08-07 18:14:13 +08:00
Please, take a look at the [**Documentation**](http://azerupi.github.io/mdBook/cli/init.html) for more information.
2015-07-29 20:02:05 +08:00
#### build
2015-08-07 18:14:13 +08:00
Use `mdbook build` in the directory to render the book. You can find more information in the [**Documentation**](http://azerupi.github.io/mdBook/cli/build.html)
2015-07-29 20:02:05 +08:00
2015-08-07 18:14:13 +08:00
### As a library
2015-07-29 20:02:05 +08:00
2015-08-07 18:14:13 +08:00
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 webapp 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 and easy to use API and more!
2015-07-29 20:02:05 +08:00
2015-08-07 18:14:13 +08:00
See the [**Documentation**](http://azerupi.github.io/mdBook/lib/lib.html) and the [**API docs**](http://azerupi.github.io/mdBook/mdbook/index.html) for more information.
2015-07-29 20:02:05 +08:00
2015-08-07 18:14:13 +08:00
## Contributions
2015-07-29 20:02:05 +08:00
2015-08-07 18:14:13 +08:00
Contributions are highly apreciated. Here are some ideas:
- **Create new renderers**, at the moment I have only created a renderer that uses [handlebars](https://github.com/sunng87/handlebars-rust), [pulldown-cmark](https://github.com/google/pulldown-cmark) and renders to html. But you could create a renderer that uses another template engine, markdown parser or even outputs to another format like pdf.
- **Add tests** I have not much experience in writing tests, all help to write meaningful tests is thus very welcome
- **write documentation** documentation can always be improved
- **Smaller tasks** I try to add a lot of the remaining tasks on the issue tracker with the label: [`Enhancement`](https://github.com/azerupi/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AEnhancement). Just pick one that looks interesting. The majority of the tasks are small enough to be tackled by people who are unfamiliar with the project.
If you have an idea for improvement, create a new issue. Or a pull request if you can :)
2015-07-29 20:34:15 +08:00
## License
All the code is released under the ***Mozilla Public License v2.0***, for more information take a look at the [LICENSE](LICENSE) file