feat(lexer): match check boxes

This commit is contained in:
Jef Roosens 2024-03-07 13:56:53 +01:00
parent ec076a56a5
commit 4ba3195ea0
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
3 changed files with 36 additions and 13 deletions

View file

@ -34,6 +34,8 @@ typedef enum mrk_token_type {
mrk_token_type_backslash,
mrk_token_type_dotted_number,
mrk_token_type_word,
mrk_token_type_checked_box,
mrk_token_type_unchecked_box,
} mrk_token_type;
typedef struct mrk_token {