xslate / p5-Text-Xslate

Scalable template engine for Perl5

Home Page:https://metacpan.org/release/Text-Xslate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parameter declaration in templates

gfx opened this issue · comments

like:

: param $foo; # foo is required
: param $bar default "ok" # $bar is optional, default to "ok"
: param $baz default my_func("baz"); # calling my_func() if $baz is not defined