diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 13:51:51 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 13:51:51 +0200 |
commit | 8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7 (patch) | |
tree | c2361c94898ca0e088fc6e63121b59c530506edb /src/content/flow.rs | |
parent | 3b083d023a8b6c7d4fe6b1140df90c907230b152 (diff) | |
download | markdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.tar.gz markdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.tar.bz2 markdown-rs-8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7.zip |
Update list of todos
Diffstat (limited to 'src/content/flow.rs')
-rw-r--r-- | src/content/flow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/flow.rs b/src/content/flow.rs index 3ff948d..4a12e0f 100644 --- a/src/content/flow.rs +++ b/src/content/flow.rs @@ -19,6 +19,7 @@ //! * [HTML (flow)][crate::construct::html_flow] //! * [Thematic break][crate::construct::thematic_break] +use std::collections::HashSet; use crate::construct::{ blank_line::start as blank_line, code_fenced::start as code_fenced, code_indented::start as code_indented, definition::start as definition, @@ -33,7 +34,6 @@ use crate::util::{ normalize_identifier::normalize_identifier, span::{from_exit_event, serialize}, }; -use std::collections::HashSet; /// Turn `codes` as the flow content type into events. pub fn flow(parse_state: &mut ParseState, point: Point, index: usize) -> Vec<Event> { |