htmd 0.2.2

A turndown.js inspired HTML to Markdown converter.
Documentation
1
2
3
4
5
6
7
8
use crate::{options::BrStyle, Element};

pub(super) fn br_handler(element: Element) -> Option<String> {
    match element.options.br_style {
        BrStyle::TwoSpaces => Some("  \n".to_string()),
        BrStyle::Backslash => Some("\\\n".to_string()),
    }
}