diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 15:21:11 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 15:21:11 +0200 |
commit | 0450e7c2b12bd3ef53e0cffb60a3dd860325b478 (patch) | |
tree | cc73bb48ae6102b27b7b864f13585eb77ef86c2c /src/util | |
parent | 8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7 (diff) | |
download | markdown-rs-0450e7c2b12bd3ef53e0cffb60a3dd860325b478.tar.gz markdown-rs-0450e7c2b12bd3ef53e0cffb60a3dd860325b478.tar.bz2 markdown-rs-0450e7c2b12bd3ef53e0cffb60a3dd860325b478.zip |
Add support for unicode punctuation
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/edit_map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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`. /// |