---input---
["toml 1.1.0 features"]
tbl = {
   key      = "a string",
   moar-tbl =  {
      key = 1,
   },
}

null = "null byte: \x00; letter a: \x61"
csi = "\e["

dt = 2010-02-03 14:15
t  = 14:15

---tokens---
'['           Keyword
'"'           Literal.String.Double
'toml 1.1.0 features' Literal.String.Double
'"'           Literal.String.Double
']'           Keyword
'\n'          Text.Whitespace

'tbl'         Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'{'           Punctuation
'\n   '       Text.Whitespace
'key'         Name
'      '      Text.Whitespace
'='           Punctuation
' '           Text.Whitespace
'"'           Literal.String.Double
'a string'    Literal.String.Double
'"'           Literal.String.Double
','           Punctuation
'\n   '       Text.Whitespace
'moar-tbl'    Name
' '           Text.Whitespace
'='           Punctuation
'  '          Text.Whitespace
'{'           Punctuation
'\n      '    Text.Whitespace
'key'         Name
' '           Text.Whitespace
'='           Punctuation
' '           Text.Whitespace
'1'           Literal.Number.Integer
','           Punctuation
'\n   '       Text.Whitespace
'}'           Punctuation
','           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n\n'        Text.Whitespace

'null'        Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'"'           Literal.String.Double
'null byte: ' Literal.String.Double
'\\x00'       Literal.String.Escape
'; letter a: ' Literal.String.Double
'\\x61'       Literal.String.Escape
'"'           Literal.String.Double
'\n'          Text.Whitespace

'csi'         Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'"'           Literal.String.Double
'\\e'         Literal.String.Escape
'['           Literal.String.Double
'"'           Literal.String.Double
'\n\n'        Text.Whitespace

'dt'          Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'2010-02-03 14:15' Literal.Date
'\n'          Text.Whitespace

't'           Name
'  '          Text.Whitespace
'='           Operator
' '           Text.Whitespace
'14:15'       Literal.Date
'\n'          Text.Whitespace
