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/jsx/test_object_attribute.txt
Flavio Curella 092bf9537b
Add JSX lexer (#2524)
Co-authored-by: Jean Abou-Samra <jean@abou-samra.fr>
2023-09-26 16:54:49 +02:00

23 lines
580 B
Text

---input---
<div style={{ color: 'red' }} />
---tokens---
'<' Punctuation
'div' Name.Tag
' ' Text.Whitespace
'style' Name.Attribute
'=' Operator
'{' Punctuation
'{' Punctuation
' ' Text.Whitespace
'color' Name.Other
':' Operator
' ' Text.Whitespace
"'red'" Literal.String.Single
' ' Text.Whitespace
'}' Punctuation
'}' Punctuation
' ' Text.Whitespace
'/' Punctuation
'>' Punctuation
'\n' Text.Whitespace