diff --git a/src/inline.rs b/src/inline.rs index d9bd423..1a52bfb 100644 --- a/src/inline.rs +++ b/src/inline.rs @@ -316,6 +316,9 @@ impl + Clone> Parser { let mut is_url = false; let len = (&mut ahead) .take_while(|c| { + if *c == '<' { + return false; + } if *c == '>' { end = true; };