pub fn parse_html_custom(
html: &str,
custom: &HashMap<String, Box<dyn TagHandlerFactory>>,
) -> StringExpand description
Custom variant of main function. Allows to pass custom tag<->tag factory pairs in order to register custom tag handler for tags you want.
You can also override standard tag handlers this way
ยงArguments
html is source HTML as String
custom is custom tag handler producers for tags you want, can be empty