pub fn parse_html_block_start(trimmed: &str) -> Option<(String, bool)>Expand description
If trimmed (a line with leading whitespace already stripped) opens an
HTML block per rumdl’s parser, return the lowercased tag name and whether
it is a closing tag. Returns None for text, autolinks, and inline-level
tags (<span>, <b>, …), which cannot interrupt a paragraph.