mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
28 lines
410 B
Plaintext
28 lines
410 B
Plaintext
---input---
|
|
%{
|
|
This is a long comment
|
|
%}
|
|
#{
|
|
This too
|
|
#}
|
|
This isnt
|
|
|
|
---tokens---
|
|
'%{\n' Comment.Multiline
|
|
|
|
'This is a long comment\n' Comment.Multiline
|
|
|
|
' %}' Comment.Multiline
|
|
'\n ' Text
|
|
'#{\n' Comment.Multiline
|
|
|
|
'This too\n' Comment.Multiline
|
|
|
|
'#}' Comment.Multiline
|
|
'\n' Text
|
|
|
|
'This' Name
|
|
' ' Text
|
|
'isnt' Name
|
|
'\n' Text
|