mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
24 lines
347 B
Plaintext
24 lines
347 B
Plaintext
|
"foo bar"
|
||
|
'foo bar'
|
||
|
"%{REMOTE_HOST}"
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["string", [
|
||
|
"\"foo bar\""
|
||
|
]],
|
||
|
["string", [
|
||
|
"'foo bar'"
|
||
|
]],
|
||
|
["string", [
|
||
|
"\"",
|
||
|
["variable", "%{REMOTE_HOST}"],
|
||
|
"\""
|
||
|
]]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for strings.
|
||
|
Also checks for variables inside strings.
|