X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/d9c118dbf1753abcbf081f532aecfe8cb6ce7de7..0dc8b912269e8df8422e5b6baab4871d1bb510c0:/IkiWiki/Plugin/wikitext.pm diff --git a/IkiWiki/Plugin/wikitext.pm b/IkiWiki/Plugin/wikitext.pm index 8b8cbe75e..586be0874 100644 --- a/IkiWiki/Plugin/wikitext.pm +++ b/IkiWiki/Plugin/wikitext.pm @@ -4,15 +4,18 @@ package IkiWiki::Plugin::wikitext; use warnings; use strict; -use Text::WikiFormat; +use IkiWiki; sub import { #{{{ - IkiWiki::hook(type => "htmlize", id => "wiki", call => \&htmlize); + hook(type => "htmlize", id => "wiki", call => \&htmlize); } # }}} -sub htmlize ($) { #{{{ - my $content = shift; +sub htmlize (@) { #{{{ + my %params=@_; + my $content = $params{content}; + eval q{use Text::WikiFormat}; + return $content if $@; return Text::WikiFormat::format($content, undef, { implicit_links => 0 }); } # }}}