IvorW wrote:
> If the answer is "no", I'm looking at investing some time in wrapping
> Chromatic's Text::WikiFormat to make a filter. Anybody interested in this?
Hi Ivor,
I'm not aware of any existing plugins/filters, but there's nothing much too
it.
package Template::Plugin::Text::WikiFormat; # untested
use base 'Template::Plugin';
use Text::WikiFormat;
sub new {
my ($self, $context) = @_;
$context->define_filter( wiki => \&Text::WikiFormat::format );
}
Then in a template:
[% FILTER wiki %]
...
[% END %]
HTH
A
_______________________________________________
templates mailing list
[email protected]
http://mail.template-toolkit.org/mailman/listinfo/templates