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/renderers/mod.rs

11 lines
216 B
Rust
Raw Normal View History

use config::Config;
pub mod sciter;
pub fn stub(config: Config, input: String) -> Result<String, String> {
let root = sciter::sciter_start(input);
let html = sciter::get_html(root);
return Ok(html);
}