pub fn parse_html_block(
reader: &mut CharReader<impl Read>,
) -> Result<Option<(String, HashMap<String, String>, String)>, ParseError>Expand description
parse html from start to end and return (tag, attributes, innerHtml)
seperated to make logic more reusable