mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
33 lines
586 B
Plaintext
33 lines
586 B
Plaintext
///foo[bar]///
|
|
///foo
|
|
[bar]///
|
|
///foo
|
|
b#{ar}baz///
|
|
///foo #bar
|
|
baz///
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["block-regex", [
|
|
"///foo[bar]///"
|
|
]],
|
|
["block-regex", [
|
|
"///foo\r\n[bar]///"
|
|
]],
|
|
["block-regex", [
|
|
"///foo\r\nb",
|
|
["interpolation", "#{ar}"],
|
|
"baz///"
|
|
]],
|
|
["block-regex", [
|
|
"///foo ",
|
|
["comment", "#bar"],
|
|
"\r\nbaz///"
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for block regex.
|
|
Also checks for comments and interpolations inside block regex. |