2017-11-18 20:01:50 +08:00
|
|
|
mod summary;
|
|
|
|
mod book;
|
2016-12-23 16:15:32 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
pub use self::book::{Book, BookItem, BookItems, Chapter};
|
2016-04-27 05:04:27 +08:00
|
|
|
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
use std::fs::{self, File};
|
2017-09-30 21:54:25 +08:00
|
|
|
use std::io::Write;
|
2016-04-27 05:04:27 +08:00
|
|
|
use std::process::Command;
|
2017-08-07 07:36:29 +08:00
|
|
|
use tempdir::TempDir;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
use {theme, utils};
|
2017-10-03 19:40:23 +08:00
|
|
|
use renderer::{HtmlHandlebars, Renderer};
|
2017-08-07 07:36:29 +08:00
|
|
|
use preprocess;
|
2017-06-25 00:04:57 +08:00
|
|
|
use errors::*;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-09-30 21:13:00 +08:00
|
|
|
use config::Config;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-05-19 05:52:38 +08:00
|
|
|
pub struct MDBook {
|
2017-09-30 21:13:00 +08:00
|
|
|
pub root: PathBuf,
|
2017-09-30 21:36:03 +08:00
|
|
|
pub config: Config,
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
book: Book,
|
2016-04-27 05:04:27 +08:00
|
|
|
renderer: Box<Renderer>,
|
|
|
|
|
2017-09-30 21:36:03 +08:00
|
|
|
pub livereload: Option<String>,
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MDBook {
|
2017-11-18 20:01:50 +08:00
|
|
|
/// Load a book from its root directory on disk.
|
|
|
|
pub fn load<P: Into<PathBuf>>(book_root: P) -> Result<MDBook> {
|
|
|
|
let book_root = book_root.into();
|
|
|
|
let config_location = book_root.join("book.toml");
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
let config = if config_location.exists() {
|
|
|
|
Config::from_disk(&config_location)?
|
|
|
|
} else {
|
|
|
|
Config::default()
|
|
|
|
};
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
let src_dir = book_root.join(&config.book.src);
|
|
|
|
let book = book::load_book(&src_dir)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
let md = MDBook {
|
|
|
|
root: book_root,
|
|
|
|
config: config,
|
|
|
|
book: book,
|
2016-04-27 05:04:27 +08:00
|
|
|
renderer: Box::new(HtmlHandlebars::new()),
|
|
|
|
livereload: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// /// Create a new `MDBook` struct with root directory `root`
|
|
|
|
// ///
|
|
|
|
// /// # Examples
|
|
|
|
// ///
|
|
|
|
// /// ```no_run
|
|
|
|
// /// # extern crate mdbook;
|
|
|
|
// /// # use mdbook::MDBook;
|
|
|
|
// /// # #[allow(unused_variables)]
|
|
|
|
// /// # fn main() {
|
|
|
|
// /// let book = MDBook::new("root_dir");
|
|
|
|
// /// # }
|
|
|
|
// /// ```
|
|
|
|
// ///
|
|
|
|
// /// In this example, `root_dir` will be the root directory of our book
|
|
|
|
// /// and is specified in function of the current working directory
|
|
|
|
// /// by using a relative path instead of an
|
|
|
|
// /// absolute path.
|
|
|
|
// ///
|
|
|
|
// /// Default directory paths:
|
|
|
|
// ///
|
|
|
|
// /// - source: `root/src`
|
|
|
|
// /// - output: `root/book`
|
|
|
|
// /// - theme: `root/theme`
|
|
|
|
// ///
|
|
|
|
// /// They can both be changed by using [`set_src()`](#method.set_src) and
|
|
|
|
// /// [`set_dest()`](#method.set_dest)
|
|
|
|
|
|
|
|
// pub fn new<P: Into<PathBuf>>(root: P) -> MDBook {
|
|
|
|
// let root = root.into();
|
|
|
|
// if !root.exists() || !root.is_dir() {
|
|
|
|
// warn!("{:?} No directory with that name", root);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// MDBook {
|
|
|
|
// root: root,
|
|
|
|
// config: Config::default(),
|
|
|
|
|
|
|
|
// content: vec![],
|
|
|
|
// renderer: Box::new(HtmlHandlebars::new()),
|
|
|
|
|
|
|
|
// livereload: None,
|
|
|
|
// create_missing: true,
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// Returns a flat depth-first iterator over the elements of the book,
|
|
|
|
/// it returns an [BookItem enum](bookitem.html):
|
2016-04-27 05:04:27 +08:00
|
|
|
/// `(section: String, bookitem: &BookItem)`
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # extern crate mdbook;
|
|
|
|
/// # use mdbook::MDBook;
|
2017-11-18 20:01:50 +08:00
|
|
|
/// # use mdbook::book::BookItem;
|
2017-06-06 17:58:08 +08:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-04-27 05:04:27 +08:00
|
|
|
/// # fn main() {
|
2017-06-06 17:58:08 +08:00
|
|
|
/// # let book = MDBook::new("mybook");
|
2016-04-27 05:04:27 +08:00
|
|
|
/// for item in book.iter() {
|
2017-11-18 20:01:50 +08:00
|
|
|
/// match *item {
|
|
|
|
/// BookItem::Chapter(ref chapter) => {},
|
|
|
|
/// BookItem::Spacer => {},
|
2016-04-27 05:04:27 +08:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // would print something like this:
|
|
|
|
/// // 1. Chapter 1
|
|
|
|
/// // 1.1 Sub Chapter
|
|
|
|
/// // 1.2 Sub Chapter
|
|
|
|
/// // 2. Chapter 2
|
|
|
|
/// //
|
|
|
|
/// // etc.
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
|
|
|
|
pub fn iter(&self) -> BookItems {
|
2017-11-18 20:01:50 +08:00
|
|
|
self.book.iter()
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// `init()` creates some boilerplate files and directories
|
|
|
|
/// to get you started with your book.
|
2016-04-27 05:04:27 +08:00
|
|
|
///
|
|
|
|
/// ```text
|
|
|
|
/// book-test/
|
|
|
|
/// ├── book
|
|
|
|
/// └── src
|
|
|
|
/// ├── chapter_1.md
|
|
|
|
/// └── SUMMARY.md
|
|
|
|
/// ```
|
|
|
|
///
|
2017-05-19 19:04:37 +08:00
|
|
|
/// It uses the paths given as source and output directories
|
|
|
|
/// and adds a `SUMMARY.md` and a
|
2016-04-27 05:04:27 +08:00
|
|
|
/// `chapter_1.md` to the source directory.
|
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
pub fn init<P: AsRef<Path>>(book_root: P) -> Result<MDBook> {
|
|
|
|
unimplemented!()
|
|
|
|
// debug!("[fn]: init");
|
|
|
|
|
|
|
|
// if !self.root.exists() {
|
|
|
|
// fs::create_dir_all(&self.root).unwrap();
|
|
|
|
// info!("{:?} created", self.root.display());
|
|
|
|
// }
|
|
|
|
|
|
|
|
// {
|
|
|
|
// let dest = self.get_destination();
|
|
|
|
// if !dest.exists() {
|
|
|
|
// debug!("[*]: {} does not exist, trying to create directory",
|
|
|
|
// dest.display()); fs::create_dir_all(dest)?;
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// let src = self.get_source();
|
|
|
|
// if !src.exists() {
|
|
|
|
// debug!("[*]: {} does not exist, trying to create directory",
|
|
|
|
// src.display()); fs::create_dir_all(&src)?;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// let summary = src.join("SUMMARY.md");
|
|
|
|
|
|
|
|
// if !summary.exists() {
|
|
|
|
// // Summary does not exist, create it
|
|
|
|
// debug!("[*]: {:?} does not exist, trying to create SUMMARY.md",
|
|
|
|
// &summary); let mut f = File::create(&summary)?;
|
|
|
|
|
|
|
|
// debug!("[*]: Writing to SUMMARY.md");
|
|
|
|
|
|
|
|
// writeln!(f, "# Summary")?;
|
|
|
|
// writeln!(f, "")?;
|
|
|
|
// writeln!(f, "- [Chapter 1](./chapter_1.md)")?;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // parse SUMMARY.md, and create the missing item related file
|
|
|
|
// self.parse_summary()?;
|
|
|
|
|
|
|
|
// debug!("[*]: constructing paths for missing files");
|
|
|
|
// for item in self.iter() {
|
|
|
|
// debug!("[*]: item: {:?}", item);
|
|
|
|
// let ch = match *item {
|
|
|
|
// BookItem::Spacer => continue,
|
|
|
|
// BookItem::Chapter(_, ref ch) | BookItem::Affix(ref ch) => ch,
|
|
|
|
// };
|
|
|
|
// if !ch.path.as_os_str().is_empty() {
|
|
|
|
// let path = self.get_source().join(&ch.path);
|
|
|
|
|
|
|
|
// if !path.exists() {
|
|
|
|
// if !self.create_missing {
|
|
|
|
// return Err(
|
|
|
|
// format!("'{}' referenced from SUMMARY.md does not
|
|
|
|
// exist.", path.to_string_lossy()).into(), );
|
|
|
|
// }
|
|
|
|
// debug!("[*]: {:?} does not exist, trying to create file", path);
|
|
|
|
// ::std::fs::create_dir_all(path.parent().unwrap())?;
|
|
|
|
// let mut f = File::create(path)?;
|
|
|
|
|
|
|
|
// // debug!("[*]: Writing to {:?}", path);
|
|
|
|
// writeln!(f, "# {}", ch.name)?;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// debug!("[*]: init done");
|
|
|
|
// Ok(())
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// pub fn create_gitignore(&self) {
|
|
|
|
// let gitignore = self.get_gitignore();
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// let destination = self.get_destination();
|
2017-06-05 01:48:41 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// // Check that the gitignore does not extist and that the destination path
|
|
|
|
// // begins with the root path
|
|
|
|
// // We assume tha if it does begin with the root path it is contained
|
|
|
|
// within. // This assumption
|
|
|
|
// // will not hold true for paths containing double dots to go back up e.g.
|
|
|
|
// // `root/../destination`
|
|
|
|
// if !gitignore.exists() && destination.starts_with(&self.root) {
|
|
|
|
// let relative = destination
|
|
|
|
// .strip_prefix(&self.root)
|
|
|
|
// .expect("Could not strip the root prefix, path is not relative
|
|
|
|
// to root") .to_str()
|
|
|
|
// .expect("Could not convert to &str");
|
2017-05-19 05:52:38 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// debug!("[*]: {:?} does not exist, trying to create .gitignore",
|
|
|
|
// gitignore);
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// let mut f = File::create(&gitignore).expect("Could not create
|
|
|
|
// file.");
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// debug!("[*]: Writing to .gitignore");
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
// writeln!(f, "/{}", relative).expect("Could not write to file.");
|
|
|
|
// }
|
|
|
|
// }
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// The `build()` method is the one where everything happens.
|
|
|
|
/// First it parses `SUMMARY.md` to construct the book's structure
|
|
|
|
/// in the form of a `Vec<BookItem>` and then calls `render()`
|
2016-04-27 05:04:27 +08:00
|
|
|
/// method of the current renderer.
|
|
|
|
///
|
|
|
|
/// It is the renderer who generates all the output files.
|
2017-06-25 00:04:57 +08:00
|
|
|
pub fn build(&mut self) -> Result<()> {
|
2016-04-27 05:04:27 +08:00
|
|
|
debug!("[fn]: build");
|
|
|
|
|
|
|
|
// Clean output directory
|
2017-09-30 22:11:47 +08:00
|
|
|
utils::fs::remove_dir_content(&self.get_destination())?;
|
2017-06-05 01:48:41 +08:00
|
|
|
|
2017-06-27 15:08:58 +08:00
|
|
|
self.renderer.render(self)
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-25 00:04:57 +08:00
|
|
|
pub fn copy_theme(&self) -> Result<()> {
|
2016-04-27 05:04:27 +08:00
|
|
|
debug!("[fn]: copy_theme");
|
|
|
|
|
2017-09-30 21:13:00 +08:00
|
|
|
let themedir = self.theme_dir();
|
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
if !themedir.exists() {
|
2017-11-18 20:01:50 +08:00
|
|
|
debug!("[*]: {:?} does not exist, trying to create directory", themedir);
|
2017-06-27 20:01:33 +08:00
|
|
|
fs::create_dir(&themedir)?;
|
|
|
|
}
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// index.hbs
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut index = File::create(themedir.join("index.hbs"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
index.write_all(theme::INDEX)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-09-28 07:06:30 +08:00
|
|
|
// header.hbs
|
|
|
|
let mut header = File::create(themedir.join("header.hbs"))?;
|
|
|
|
header.write_all(theme::HEADER)?;
|
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// book.css
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut css = File::create(themedir.join("book.css"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
css.write_all(theme::CSS)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// favicon.png
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut favicon = File::create(themedir.join("favicon.png"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
favicon.write_all(theme::FAVICON)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// book.js
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut js = File::create(themedir.join("book.js"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
js.write_all(theme::JS)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// highlight.css
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut highlight_css = File::create(themedir.join("highlight.css"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
highlight_css.write_all(theme::HIGHLIGHT_CSS)?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
// highlight.js
|
2017-09-30 21:13:00 +08:00
|
|
|
let mut highlight_js = File::create(themedir.join("highlight.js"))?;
|
2017-06-27 20:01:33 +08:00
|
|
|
highlight_js.write_all(theme::HIGHLIGHT_JS)?;
|
2017-06-05 01:48:41 +08:00
|
|
|
|
2016-04-27 05:04:27 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-06-25 00:04:57 +08:00
|
|
|
pub fn write_file<P: AsRef<Path>>(&self, filename: P, content: &[u8]) -> Result<()> {
|
2017-10-03 19:40:23 +08:00
|
|
|
let path = self.get_destination().join(filename);
|
2017-05-19 05:52:38 +08:00
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
utils::fs::create_file(&path)?
|
|
|
|
.write_all(content)
|
|
|
|
.map_err(|e| e.into())
|
2017-01-01 14:27:38 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// Parses the `book.json` file (if it exists) to extract
|
|
|
|
/// the configuration parameters.
|
2016-04-27 05:04:27 +08:00
|
|
|
/// The `book.json` file should be in the root directory of the book.
|
|
|
|
/// The root directory is the one specified when creating a new `MDBook`
|
|
|
|
|
2017-06-25 00:04:57 +08:00
|
|
|
pub fn read_config(mut self) -> Result<Self> {
|
2017-09-30 21:13:00 +08:00
|
|
|
let config_path = self.root.join("book.toml");
|
2017-12-09 17:36:23 +08:00
|
|
|
|
|
|
|
if config_path.exists() {
|
|
|
|
debug!("[*] Loading the config from {}", config_path.display());
|
|
|
|
self.config = Config::from_disk(&config_path)?;
|
|
|
|
} else {
|
|
|
|
self.config = Config::default();
|
|
|
|
}
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-05-19 05:52:38 +08:00
|
|
|
Ok(self)
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// You can change the default renderer to another one
|
|
|
|
/// by using this method. The only requirement
|
|
|
|
/// is for your renderer to implement the
|
|
|
|
/// [Renderer trait](../../renderer/renderer/trait.Renderer.html)
|
2016-04-27 05:04:27 +08:00
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// extern crate mdbook;
|
|
|
|
/// use mdbook::MDBook;
|
|
|
|
/// use mdbook::renderer::HtmlHandlebars;
|
|
|
|
///
|
2017-06-06 17:58:08 +08:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-04-27 05:04:27 +08:00
|
|
|
/// fn main() {
|
2017-06-06 17:58:08 +08:00
|
|
|
/// let book = MDBook::new("mybook")
|
2016-04-27 05:04:27 +08:00
|
|
|
/// .set_renderer(Box::new(HtmlHandlebars::new()));
|
|
|
|
///
|
2017-05-19 19:04:37 +08:00
|
|
|
/// // In this example we replace the default renderer
|
|
|
|
/// // by the default renderer...
|
|
|
|
/// // Don't forget to put your renderer in a Box
|
2016-04-27 05:04:27 +08:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2017-05-19 19:04:37 +08:00
|
|
|
/// **note:** Don't forget to put your renderer in a `Box`
|
|
|
|
/// before passing it to `set_renderer()`
|
2016-04-27 05:04:27 +08:00
|
|
|
|
|
|
|
pub fn set_renderer(mut self, renderer: Box<Renderer>) -> Self {
|
|
|
|
self.renderer = renderer;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-06-19 22:06:15 +08:00
|
|
|
pub fn test(&mut self, library_paths: Vec<&str>) -> Result<()> {
|
2017-09-30 21:13:00 +08:00
|
|
|
let library_args: Vec<&str> = (0..library_paths.len())
|
|
|
|
.map(|_| "-L")
|
|
|
|
.zip(library_paths.into_iter())
|
|
|
|
.flat_map(|x| vec![x.0, x.1])
|
|
|
|
.collect();
|
2017-08-07 07:36:29 +08:00
|
|
|
let temp_dir = TempDir::new("mdbook")?;
|
2016-04-27 05:04:27 +08:00
|
|
|
for item in self.iter() {
|
2017-11-18 20:01:50 +08:00
|
|
|
if let BookItem::Chapter(ref ch) = *item {
|
2017-08-07 07:36:29 +08:00
|
|
|
if !ch.path.as_os_str().is_empty() {
|
2017-05-19 05:52:38 +08:00
|
|
|
let path = self.get_source().join(&ch.path);
|
2017-10-03 19:40:23 +08:00
|
|
|
let base = path.parent()
|
2017-11-18 20:01:50 +08:00
|
|
|
.ok_or_else(|| String::from("Invalid bookitem path!"))?;
|
2017-08-07 07:36:29 +08:00
|
|
|
let content = utils::fs::file_to_string(&path)?;
|
|
|
|
// Parse and expand links
|
|
|
|
let content = preprocess::links::replace_all(&content, base)?;
|
2017-02-16 11:01:26 +08:00
|
|
|
println!("[*]: Testing file: {:?}", path);
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-09-30 21:13:00 +08:00
|
|
|
// write preprocessed file to tempdir
|
2017-08-07 07:36:29 +08:00
|
|
|
let path = temp_dir.path().join(&ch.path);
|
|
|
|
let mut tmpf = utils::fs::create_file(&path)?;
|
|
|
|
tmpf.write_all(content.as_bytes())?;
|
|
|
|
|
2017-11-18 20:01:50 +08:00
|
|
|
let output = Command::new("rustdoc")
|
|
|
|
.arg(&path)
|
|
|
|
.arg("--test")
|
|
|
|
.args(&library_args)
|
|
|
|
.output()?;
|
2016-04-27 05:04:27 +08:00
|
|
|
|
2017-02-16 11:01:26 +08:00
|
|
|
if !output.status.success() {
|
2017-11-18 20:01:50 +08:00
|
|
|
bail!(ErrorKind::Subprocess("Rustdoc returned an error".to_string(), output));
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
2017-02-16 11:01:26 +08:00
|
|
|
}
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-09-30 21:36:03 +08:00
|
|
|
pub fn get_destination(&self) -> PathBuf {
|
2017-11-30 23:26:30 +08:00
|
|
|
self.root.join(&self.config.build.build_dir)
|
2017-05-20 19:56:01 +08:00
|
|
|
}
|
|
|
|
|
2017-09-30 21:36:03 +08:00
|
|
|
pub fn get_source(&self) -> PathBuf {
|
2017-09-30 21:13:00 +08:00
|
|
|
self.root.join(&self.config.book.src)
|
2017-05-20 19:56:01 +08:00
|
|
|
}
|
|
|
|
|
2017-09-30 21:36:03 +08:00
|
|
|
pub fn theme_dir(&self) -> PathBuf {
|
|
|
|
match self.config.html_config().and_then(|h| h.theme) {
|
|
|
|
Some(d) => self.root.join(d),
|
|
|
|
None => self.root.join("theme"),
|
|
|
|
}
|
2016-04-27 05:04:27 +08:00
|
|
|
}
|
|
|
|
}
|