//! Element processors for different content types
pubmodcode;pubmodfootnotes;pubmodheadings;pubmodimages;uselol_html::html_content::Element;/// Trait for element processors
pubtraitElementProcessor{/// Process an element
fnprocess(element:&mut Element);/// Check if this processor can handle the given element
fncan_process(element:&Element)->bool;}