From dfd11b1bc155ae1fba9975a90c2dc83dc07697b4 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 28 Jun 2022 14:18:17 +0200 Subject: Fix jumps in `edit_map` * Use resolve more often (e.g., heading (atx, setext)) * Fix to link whole phrasing (e.g., one big chunk of text in heading (atx, setext), titles, labels) * Replace `ChunkText`, `ChunkString`, with `event.content_type: Option` * Refactor to externalize `edit_map` from `label` --- src/util/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/util/mod.rs') diff --git a/src/util/mod.rs b/src/util/mod.rs index ee58518..68ef275 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -1,6 +1,7 @@ //! Utilities used when compiling markdown. pub mod decode_character_reference; +pub mod edit_map; pub mod encode; pub mod normalize_identifier; pub mod sanitize_uri; -- cgit