diff --git a/src/wrap.rs b/src/wrap.rs index ce97ecfd..b26688ee 100644 --- a/src/wrap.rs +++ b/src/wrap.rs @@ -8,6 +8,10 @@ use regex::{Captures, Regex}; mod tokenize; +/// Token emitted by [`tokenize::segment_inline`] and used by higher-level wrappers. +/// +/// Re-export this so callers of [`crate::textproc`] can implement custom +/// transformations without depending on internal modules. pub use tokenize::Token; static FENCE_RE: std::sync::LazyLock =