This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/src/build/mod.rs

12 lines
283 B
Rust
Raw Normal View History

2017-08-14 21:45:23 +01:00
pub mod pandoc;
pub mod render;
2017-08-14 21:45:23 +01:00
use config::Config;
2017-08-14 22:10:05 +01:00
pub fn build_input(config: Config, input: String) -> Result<String, String> {
let html = try!(pandoc::render(config.clone(), input));
let rendered = try!(render::render(config.clone(), html));
return Ok(rendered);
2017-08-14 21:45:23 +01:00
}