diff options
Diffstat (limited to 'src/parse')
| -rw-r--r-- | src/parse/tokens.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/tokens.rs b/src/parse/tokens.rs index 0c125b4b..ca2cb74a 100644 --- a/src/parse/tokens.rs +++ b/src/parse/tokens.rs @@ -248,7 +248,7 @@ impl<'s> Tokens<'s> { // Parenthesis and hashtag. '[' | ']' | '{' | '}' | '#' | // Markup. - '*' | '_' | '=' | '~' | '`' | '$' => { + '~' | '*' | '_' | '`' | '$' | '=' | '-' | '.' => { self.s.eat_assert(c); NodeKind::Escape(c) } |
