1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-17 20:58:08 +02:00

lexers: support for nim GENERALIZED_TRIPLESTR_LIT (#853)

This commit is contained in:
Rupus Reinefjord 2023-09-19 15:20:40 +02:00 committed by GitHub
parent 94d11ab996
commit 0b08639048
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,6 +132,10 @@
<rule pattern="\.\.|\.|,|\[\.|\.\]|\{\.|\.\}|\(\.|\.\)|\{|\}|\(|\)|:|\^|`|;">
<token type="Punctuation"/>
</rule>
<rule pattern="(?:[\w]+)&#34;&#34;&#34;">
<token type="LiteralString"/>
<push state="tdqs"/>
</rule>
<rule pattern="(?:[\w]+)&#34;">
<token type="LiteralString"/>
<push state="rdqs"/>