Skip to content

Instantly share code, notes, and snippets.

@tomyhero
Created October 27, 2010 08:03
Show Gist options
  • Save tomyhero/648648 to your computer and use it in GitHub Desktop.
Save tomyhero/648648 to your computer and use it in GitHub Desktop.
#macro.inc
[%- MACRO hoge() BLOCK %]
hoge
[% END %]
#index.tx
Hello Macro [% hoge() %]
#
my $xslate = Text::Xslate->new(
module => [
'Text::Xslate::Bridge::TT2Like'
],
PRE_PROCESS => 'macro.inc', # <- TTにあるoption
);
$xslate->render('index.tx');
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment