mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
33 lines
657 B
Plaintext
33 lines
657 B
Plaintext
|
;
|
||
|
; foo
|
||
|
#comments-start
|
||
|
foobar()
|
||
|
#comments-end
|
||
|
#cs
|
||
|
foobar()
|
||
|
#ce
|
||
|
;#comments-start
|
||
|
foobar()
|
||
|
;#comments-end
|
||
|
;#cs
|
||
|
foobar()
|
||
|
;#ce
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["comment", ";"],
|
||
|
["comment", "; foo"],
|
||
|
["comment", "#comments-start\r\n\tfoobar()\r\n#comments-end"],
|
||
|
["comment", "#cs\r\n\tfoobar()\r\n#ce"],
|
||
|
["comment", ";#comments-start"],
|
||
|
["function", "foobar"], ["punctuation", "("], ["punctuation", ")"],
|
||
|
["comment", ";#comments-end"],
|
||
|
["comment", ";#cs"],
|
||
|
["function", "foobar"], ["punctuation", "("], ["punctuation", ")"],
|
||
|
["comment", ";#ce"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for comments.
|