aboutsummaryrefslogtreecommitdiffstats
path: root/src/subtokenize.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-04 13:51:51 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-04 13:51:51 +0200
commit8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7 (patch)
treec2361c94898ca0e088fc6e63121b59c530506edb /src/subtokenize.rs
parent3b083d023a8b6c7d4fe6b1140df90c907230b152 (diff)
downloadmarkdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.tar.gz
markdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.tar.bz2
markdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.zip
Update list of todos
Diffstat (limited to 'src/subtokenize.rs')
-rw-r--r--src/subtokenize.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/subtokenize.rs b/src/subtokenize.rs
index 92ada04..ad8aace 100644
--- a/src/subtokenize.rs
+++ b/src/subtokenize.rs
@@ -21,9 +21,7 @@
//! thus the whole document needs to be parsed up to the level of definitions,
//! before any level that can include references can be parsed.
-/// To do: could we do without `HashMap`, so we don’t need `std`?
use std::collections::HashMap;
-
use crate::content::{string::start as string, text::start as text};
use crate::parser::ParseState;
use crate::tokenizer::{ContentType, Event, EventType, State, StateFn, StateFnResult, Tokenizer};