latexml_core/util.rs
1/// boundary-safe forward cursor over `&str` — the shared answer to the
2/// byte-index scanners inherited from Perl's character-oriented string ops
3pub mod char_cursor;
4/// image file helpers — port of `LaTeXML::Util::Image`
5pub mod image;
6/// log recording and reporting interface
7pub mod logger;
8/// helper methods for file system paths
9pub mod pathname;
10/// "radix" may be a misnomer here. Primarily used to generate labels, or uniquifying suffixes to
11/// make ID's
12pub mod radix;
13/// helpers for extracting structured data from replacement (and other) strings
14pub mod text;