[Templates] Looking for a plugin for wiki formatting
Andy Wardley
abw at wardley.org
Mon May 5 07:17:56 BST 2008
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
More information about the templates
mailing list