adbook 0.1.0

Creates a book from AsciiDoc files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Preset template files embedded in `adbook` binary
//!
//! # Example
//!
//! Print `article.adoc` embedded in `adbook`:
//!
//! ```sh
//! $ adbook preset a # article.adoc
//! ```

/// a | article | article.adoc
pub const ARTICLE_ADOC: &[u8] = include_bytes!("article.adoc");

/// b | book | book.ron
pub const BOOK_RON: &[u8] = include_bytes!("book.ron");

/// t | toc | toc.ron
pub const TOC_RON: &[u8] = include_bytes!("toc.ron");