Implement underline and strikethrough tokens

This commit is contained in:
Juno Takano 2026-01-06 22:59:47 -03:00
commit 0d910634c6
9 changed files with 182 additions and 29 deletions

View file

@ -41,7 +41,7 @@ fn lex(text: &str, map: LexMap, config: &Config) -> Vec<Token> {
continue;
}
if point::parse(lexeme, &mut state, &mut tokens) {
if point::parse(lexeme, &mut state, &mut tokens, &mut iterator) {
continue;
}