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/toml/section-header-whitespace.txt
2023-11-09 21:16:09 +01:00

16 lines
423 B
Text

---input---
[ foo . bar ] # whitespace allowed in table headers
---tokens---
'[' Keyword
' ' Text.Whitespace
'foo' Keyword
' ' Text.Whitespace
'.' Keyword
' ' Text.Whitespace
'bar' Keyword
' ' Text.Whitespace
']' Keyword
' ' Text.Whitespace
'# whitespace allowed in table headers' Comment.Single
'\n' Text.Whitespace