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/properties/test_escaped_space_in_value.txt
Jean Abou-Samra fdf182a7af
Improve Java properties lexer (#2404)
Use special lexer rules for escapes; fixes catastrophic backtracking,
and highlights them too.

Fixes #2356
2023-04-17 20:14:42 +02:00

12 lines
286 B
Text

---input---
key = doubleword\ value
---tokens---
'key' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'doubleword' Literal.String
'\\ ' Literal.String.Escape
'value' Literal.String
'\n' Text.Whitespace