From 2aa90a60a45566ebfdb5252a77bb318810cffe0c Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 7 Jul 2022 18:16:23 +0200 Subject: Fix some small to dos --- src/parser.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/parser.rs') 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. /// -- cgit