Markdown parser fork with extended syntax for personal use.
1//! Utilities used when processing markdown.
2
3pub mod char;
4pub mod character_reference;
5pub mod constant;
6pub mod edit_map;
7pub mod encode;
8pub mod gfm_tagfilter;
9pub mod identifier;
10pub mod infer;
11pub mod line_ending;
12pub mod location;
13pub mod mdx;
14pub mod mdx_collect;
15pub mod normalize_identifier;
16pub mod sanitize_uri;
17pub mod skip;
18pub mod slice;
19pub mod unicode;