This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/octave/test_multilinecomment.txt
2021-03-01 11:47:34 +01:00

27 lines
410 B
Text

---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