mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
23 lines
464 B
Plaintext
23 lines
464 B
Plaintext
|
---
|
||
|
foo: ""
|
||
|
bar: "fo\"obar"
|
||
|
foo: ''
|
||
|
bar: 'fo\'obar'
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["punctuation", "---"],
|
||
|
["key", "foo"], ["punctuation", ":"],
|
||
|
["string", "\"\""],
|
||
|
["key", "bar"], ["punctuation", ":"],
|
||
|
["string", "\"fo\\\"obar\""],
|
||
|
["key", "foo"], ["punctuation", ":"],
|
||
|
["string", "''"],
|
||
|
["key", "bar"], ["punctuation", ":"],
|
||
|
["string", "'fo\\'obar'"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for strings.
|