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/pandoc.rs

12 lines
207 B
Rust
Raw Normal View History

2017-08-14 21:45:23 +01:00
use config::Config;
use pandoc::Pandoc;
fn build_pandoc(config: &Config) -> Pandoc {
return Pandoc::new();
}
pub fn render(config: &Config, input: String) {
let renderer = build_pandoc(config);
}