diff options
Diffstat (limited to 'src/construct/heading_setext.rs')
-rw-r--r-- | src/construct/heading_setext.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/construct/heading_setext.rs b/src/construct/heading_setext.rs index 7c41855..d9ff96c 100644 --- a/src/construct/heading_setext.rs +++ b/src/construct/heading_setext.rs @@ -51,8 +51,9 @@ use crate::constant::TAB_SIZE; use crate::construct::partial_space_or_tab::space_or_tab_opt; +use crate::subtokenize::link; use crate::tokenizer::{Code, State, StateFnResult, TokenType, Tokenizer}; -use crate::util::{link::link, span::from_exit_event}; +use crate::util::span::from_exit_event; /// Kind of underline. #[derive(Debug, Clone, PartialEq)] |