jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/apacheconf/string_feature.test

24 lines
347 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
"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.