response
[ikiwiki.git] / IkiWiki / Plugin / textile.pm
blob56bb4bffce83bf9fa47b1ad731f46c8dc8d9f652
1 #!/usr/bin/perl
2 # By mazirian; GPL license
3 # Textile markup
5 package IkiWiki::Plugin::textile;
7 use warnings;
8 use strict;
9 use IkiWiki 3.00;
10 use Encode;
12 sub import {
13 hook(type => "getsetup", id => "textile", call => \&getsetup);
14 hook(type => "htmlize", id => "txtl", call => \&htmlize, longname => "Textile");
17 sub getsetup () {
18 return
19 plugin => {
20 safe => 1,
21 rebuild => 1, # format plugin
22 section => "format",
26 sub htmlize (@) {
27 my %params=@_;
28 my $content = decode_utf8(encode_utf8($params{content}));
30 eval q{use Text::Textile};
31 return $content if $@;
32 return Text::Textile::textile($content);