diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-19 15:36:21 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-19 15:36:21 +0200 |
commit | ae0f12e668cfd37728aad907c813431595e6cc1b (patch) | |
tree | 3cdc7282643656633a11c992cd7d1d050924dadc /src/tokenizer.rs | |
parent | c4cd482fd5006cde338e49104f2abdbd20fd644d (diff) | |
download | markdown-rs-ae0f12e668cfd37728aad907c813431595e6cc1b.tar.gz markdown-rs-ae0f12e668cfd37728aad907c813431595e6cc1b.tar.bz2 markdown-rs-ae0f12e668cfd37728aad907c813431595e6cc1b.zip |
Use `edit_map` in `subtokenize`
Diffstat (limited to '')
-rw-r--r-- | src/tokenizer.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tokenizer.rs b/src/tokenizer.rs index 92a9e1a..8f85af0 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -17,8 +17,6 @@ use crate::token::{Token, VOID_TOKENS}; /// Embedded content type. #[derive(Debug, Clone, Copy, PartialEq)] pub enum ContentType { - /// Represents [flow content][crate::content::flow]. - Flow, /// Represents [text content][crate::content::text]. Text, /// Represents [string content][crate::content::string]. |