feat(lexer): parse equal signs

This commit is contained in:
Jef Roosens 2024-03-04 19:13:51 +01:00
parent f6e034097d
commit dc3cfc5fbe
Signed by: Jef Roosens
GPG key ID: 02D4C0997E74717B
2 changed files with 7 additions and 1 deletions

View file

@ -19,6 +19,7 @@ typedef enum mrk_token_type {
mrk_token_type_dashes,
mrk_token_type_underscores,
mrk_token_type_stars,
mrk_token_type_equals,
mrk_token_type_blank_line,
mrk_token_type_space,
mrk_token_type_line_break,