From 0450e7c2b12bd3ef53e0cffb60a3dd860325b478 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 4 Jul 2022 15:21:11 +0200 Subject: Add support for unicode punctuation --- src/util/edit_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util') diff --git a/src/util/edit_map.rs b/src/util/edit_map.rs index 417f42b..eba667d 100644 --- a/src/util/edit_map.rs +++ b/src/util/edit_map.rs @@ -8,8 +8,8 @@ //! And, in other cases, it’s needed to parse subcontent: pass some events //! through another tokenizer and inject the result. -use std::collections::HashMap; use crate::tokenizer::Event; +use std::collections::HashMap; /// Shift `previous` and `next` links according to `jumps`. /// -- cgit