mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
24 lines
316 B
Plaintext
24 lines
316 B
Plaintext
|
#!/usr/bin/env q
|
||
|
/ Foobar
|
||
|
|
||
|
/
|
||
|
Foo
|
||
|
bar
|
||
|
\
|
||
|
|
||
|
\
|
||
|
Foo
|
||
|
Bar
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["comment", "#!/usr/bin/env q"],
|
||
|
["comment", "/ Foobar"],
|
||
|
["comment", "/\r\nFoo\r\nbar\r\n\\"],
|
||
|
["comment", "\\\r\nFoo\r\nBar"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for comments.
|