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_aria_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

16 lines
386 B
Text

---input---
<button aria-label="Submit">Submit</button>
---tokens---
'<' Punctuation
'button' Name.Tag
' ' Text.Whitespace
'aria-label' Name.Attribute
'=' Operator
'"Submit"' Literal.String
'>' Punctuation
'Submit' Name.Other
'</' Punctuation
'button' Name.Tag
'>' Punctuation
'\n' Text.Whitespace