mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
36 lines
589 B
Plaintext
36 lines
589 B
Plaintext
|
{assign var=foo value="bar"}
|
||
|
{foo bar = 40}
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["smarty", [
|
||
|
["delimiter", "{"],
|
||
|
["function", "assign"],
|
||
|
["attr-name", [
|
||
|
"var",
|
||
|
["operator", "="],
|
||
|
["variable", "foo"]
|
||
|
]],
|
||
|
["attr-name", [
|
||
|
"value",
|
||
|
["operator", "="]
|
||
|
]],
|
||
|
["string", "\"bar\""],
|
||
|
["delimiter", "}"]
|
||
|
]],
|
||
|
["smarty", [
|
||
|
["delimiter", "{"],
|
||
|
["function", "foo"],
|
||
|
["attr-name", [
|
||
|
"bar ",
|
||
|
["operator", "="]
|
||
|
]],
|
||
|
["number", "40"],
|
||
|
["delimiter", "}"]
|
||
|
]]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for attributes.
|