tartrazine/spec/tests/toml/multiline-string-comment.txt

16 lines
439 B
Plaintext
Raw Normal View History

2024-08-03 10:36:47 +00:00
---input---
message = """multiline strings
can be followed by""" # comments
---tokens---
'message' Name
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"""' Literal.String.Double
'multiline strings\n can be followed by' Literal.String.Double
'"""' Literal.String.Double
' ' Text.Whitespace
'# comments' Comment.Single
'\n' Text.Whitespace