diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 18:16:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 18:16:23 +0200 |
commit | 2aa90a60a45566ebfdb5252a77bb318810cffe0c (patch) | |
tree | de5fe00ddfa1daae9422d134b8da4bead6de9694 /src/parser.rs | |
parent | 1c3b6e900d9b23e8a1f34f1c5b7b9657bd7c1451 (diff) | |
download | markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.tar.gz markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.tar.bz2 markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.zip |
Fix some small to dos
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser.rs b/src/parser.rs index b1fd4fd..725f326 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,10 +1,9 @@ //! Turn a string of markdown into events. -use std::collections::HashSet; -// To do: this should start with `containers`, when they’re done. use crate::content::document::document; use crate::tokenizer::{Code, Event, Point}; use crate::util::codes::parse as parse_codes; +use std::collections::HashSet; /// Information needed, in all content types, when parsing markdown. /// |