pub mod converter;
pub mod options;
pub mod rules;
pub mod state;
pub use options::MarkdownOptions;
pub fn html_to_markdown(html: &str, options: &MarkdownOptions) -> String {
let doc = scraper::Html::parse_fragment(html);
converter::convert(&doc, options)
}