Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
textile.pm
diff --git
a/IkiWiki/Plugin/textile.pm
b/IkiWiki/Plugin/textile.pm
index 5de71bf6eb11aa682dde75eaac98970b4174c9f9..bbd282f0c8dd09035f03eadc85fbd3ea0823cf7a 100644
(file)
--- a/
IkiWiki/Plugin/textile.pm
+++ b/
IkiWiki/Plugin/textile.pm
@@
-7,14
+7,24
@@
package IkiWiki::Plugin::textile;
use warnings;
use strict;
use IkiWiki 2.00;
use warnings;
use strict;
use IkiWiki 2.00;
+use Encode;
sub import { #{{{
sub import { #{{{
+ hook(type => "getsetup", id => "textile", call => \&getsetup);
hook(type => "htmlize", id => "txtl", call => \&htmlize);
} # }}}
hook(type => "htmlize", id => "txtl", call => \&htmlize);
} # }}}
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => 1, # format plugin
+ },
+} #}}}
+
sub htmlize (@) { #{{{
my %params=@_;
sub htmlize (@) { #{{{
my %params=@_;
- my $content =
$params{content}
;
+ my $content =
decode_utf8(encode_utf8($params{content}))
;
eval q{use Text::Textile};
return $content if $@;
eval q{use Text::Textile};
return $content if $@;