mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-05-12 12:51:13 -03:00
21 lines
552 B
Plaintext
21 lines
552 B
Plaintext
---input---
|
|
[example] # A comment can appear on the same line as a section header
|
|
foo = "bar"
|
|
|
|
---tokens---
|
|
'[' Keyword
|
|
'example' Keyword
|
|
']' Keyword
|
|
' ' Text.Whitespace
|
|
'# A comment can appear on the same line as a section header' Comment.Single
|
|
'\n' Text.Whitespace
|
|
|
|
'foo' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
'"' Literal.String.Double
|
|
'bar' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
'\n' Text.Whitespace
|