fast_h2m 0.2.0

High-performance HTML to Markdown converter
Documentation
1
2
3
4
5
6
7
8
9
//! Callback management for visitor pattern.
//!
//! The callback implementation is split between `state`, `content`, and
//! `traversal`. This module preserves the callback namespace for callers that
//! want to import visitor callback primitives from one place.

pub use super::content::VisitorDispatch;
pub use super::state::build_node_context;
pub use super::traversal::dispatch_visitor;