http://qs321.pair.com?node_id=128473


in reply to Re: Passing arguments to subroutines using Template Toolkit
in thread Passing arguments to subroutines using Template Toolkit

Grr. Of course this works. sigh. I think I spent too much time looking at the first page of the TT perldoc where it tells me to pass it as a reference. I tried every combination of \&some_sub I could think of...

elbieelbieelbie

  • Comment on Re: Re: Passing arguments to subroutines using Template Toolkit

Replies are listed 'Best First'.
Re: Re: Re: Passing arguments to subroutines using Template Toolkit
by perrin (Chancellor) on Nov 30, 2001 at 02:34 UTC
    You only need to pass the sub as a reference if you plan to call it from within the template. Passing it as a ref lets you do this in your template:
    [% filler(some_var) %]
    Personally, I like to avoid callbacks from within templates when possible, but this can be useful for things like passing in a subroutine that escapes HTML characters.