pub type TextHandler<'h> = Box<dyn FnMut(&mut TextChunk<'_>) -> HandlerResult + 'h>;
Boxed closure for handling text chunks present the HTML.
pub struct TextHandler<'h>(/* private fields */);