Implement checkbox

This commit is contained in:
Juno Takano 2026-01-07 10:56:38 -03:00
commit dfdc631600
5 changed files with 75 additions and 5 deletions

View file

@ -17,7 +17,7 @@ pub mod delimiter {
Delimiters {
atomic: vec!['`', '|', '\\'],
double: vec!['_', '~'],
flanking: vec!['_', '*', '~', '(', ')', '\'', '"'],
flanking: vec!['_', '*', '~', '(', ')', '[', ']', '\'', '"'],
punctuation: vec![',', '.', ';', ':', '?', '!'],
whitespace: vec!['\n', ' '],
}