Trait html2md::TagHandler[][src]

pub trait TagHandler {
    fn handle(&mut self, tag: &Handle, printer: &mut StructuredPrinter);
fn after_handle(&mut self, printer: &mut StructuredPrinter); fn skip_descendants(&self) -> bool { ... } }

Trait interface describing abstract handler of arbitrary HTML tag.

Required Methods

Handle tag encountered when walking HTML tree

Executed after all children of this tag have been processed

Provided Methods

Implementors