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

24 lines
570 B
Rust
Raw Normal View History

use config::Config;
2017-09-01 21:49:39 +01:00
use sciter::{Window, Host, Element};
use std::rc::Rc;
use std::ops::Deref;
pub mod html_cleanup;
2017-09-01 14:41:14 +01:00
pub mod strip_blank;
2017-09-01 21:49:39 +01:00
fn get_root(frame: Window) -> Element {
return frame.get_host().deref().get_root().expect("Failed to get root of window");
}
fn sciter_start(source: String) -> Element {
let mut frame = Window::new();
frame.load_html(&source.as_bytes(), None);
return get_root(frame);
}
fn get_html(element: Element) -> String {
return String::from_utf8(element.get_html(true)).expect("Failed to get HTML from element");
}