Skip to content

Instantly share code, notes, and snippets.

@hdp
Created February 15, 2011 00:59
Show Gist options
  • Save hdp/826902 to your computer and use it in GitHub Desktop.
Save hdp/826902 to your computer and use it in GitHub Desktop.
# sort of a mini-global
my $c;
my $tx = Text::Xslate->new(
function => {
text_field => sub { $link_to->($c, @_) },
...
},
...,
);
# called as $render->($c, @other_render_args);
my $render = sub {
$c = shift;
$tx->render(@_);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment