Skip to content

Commit

Permalink
Merge pull request rust-lang#1099 from Michael-F-Bryan/expose-execute…
Browse files Browse the repository at this point in the history
…-build-process

Exposed the MDBook::execute_build_process() method to 3rd parties
  • Loading branch information
ehuss authored Nov 23, 2019
2 parents d664d33 + d20adbe commit aeba395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/book/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ impl MDBook {
}

/// Run the entire build process for a particular `Renderer`.
fn execute_build_process(&self, renderer: &dyn Renderer) -> Result<()> {
pub fn execute_build_process(&self, renderer: &dyn Renderer) -> Result<()> {
let mut preprocessed_book = self.book.clone();
let preprocess_ctx = PreprocessorContext::new(
self.root.clone(),
Expand Down

0 comments on commit aeba395

Please sign in to comment.