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

10 lines
180 B
Rust
Raw Normal View History

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