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/html/javascript.txt
2023-02-23 16:41:01 +01:00

28 lines
602 B
Text

---input---
<script type="text/javascript">
alert("hi");
</script>
---tokens---
'<' Punctuation
'script' Name.Tag
' ' Text
'type' Name.Attribute
'=' Operator
'"text/javascript"' Literal.String
'>' Punctuation
'' Text
'\n' Text.Whitespace
'alert' Name.Other
'(' Punctuation
'"hi"' Literal.String.Double
')' Punctuation
';' Punctuation
'\n' Text.Whitespace
'<' Punctuation
'/' Punctuation
'script' Name.Tag
'>' Punctuation
'\n' Text