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/smarty/test_nested_curly.txt
Georg Brandl b40b0cca06 Rename "tests/lexers" to "tests/snippets" and update the contribution
docs to point to both snippets and examplefiles.
2021-01-20 10:57:30 +01:00

18 lines
463 B
Text

---input---
{templateFunction param={anotherFunction} param2=$something}
---tokens---
'{' Comment.Preproc
'templateFunction' Name.Function
' ' Text
'param' Name.Attribute
'=' Operator
'{' Comment.Preproc
'anotherFunction' Name.Attribute
'}' Comment.Preproc
' ' Text
'param2' Name.Attribute
'=' Operator
'$something' Name.Variable
'}' Comment.Preproc
'\n' Other