mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -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. |