| Text::Xslate::Syntax::Metakolon(3pm) | User Contributed Perl Documentation | Text::Xslate::Syntax::Metakolon(3pm) |
Text::Xslate::Syntax::Metakolon - The same as Kolon but using [% ... %] tags
use Text::Xslate;
my $tx = Text::Xslate->new(
syntax => 'Metakolon',
);
print $tx->render_string(
'Hello, [% $dialect %] world!',
{ dialect => 'Metakolon' }
);
Metakolon is the same as Kolon except for using "[% ... %]" tags and "%% ..." line code, instead of "<: ... :>" and ": ...".
This may be useful when you want to produce Xslate templates by itself.
See Text::Xslate::Syntax::Kolon for details.
Text::Xslate
| 2022-10-20 | perl v5.36.0 |