mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
29 lines
463 B
Plaintext
29 lines
463 B
Plaintext
""
|
|
"foobar"
|
|
"foo<bar>baz"
|
|
''
|
|
'foobar'
|
|
'foo<bar>baz'
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", ["\"\""]],
|
|
["string", ["\"foobar\""]],
|
|
["string", [
|
|
"\"foo",
|
|
["outline", "<bar>"],
|
|
"baz\""
|
|
]],
|
|
["string", ["''"]],
|
|
["string", ["'foobar'"]],
|
|
["string", [
|
|
"'foo",
|
|
["outline", "<bar>"],
|
|
"baz'"
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for double-quoted and single-quoted strings. |