X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/b6116256c513daffe91d55a34dc134c8a43f9c8f..10af328ff1a4c5da585889c3c580fd5a579dea70:/IkiWiki/Plugin/wikitext.pm diff --git a/IkiWiki/Plugin/wikitext.pm b/IkiWiki/Plugin/wikitext.pm index 586be0874..c47ccb7b1 100644 --- a/IkiWiki/Plugin/wikitext.pm +++ b/IkiWiki/Plugin/wikitext.pm @@ -4,12 +4,22 @@ package IkiWiki::Plugin::wikitext; use warnings; use strict; -use IkiWiki; +use IkiWiki 2.00; sub import { #{{{ + hook(type => "getsetup", id => "wiki", call => \&getsetup); hook(type => "htmlize", id => "wiki", call => \&htmlize); } # }}} +sub getsetup () { #{{{ + return + plugin => { + safe => 0, # format plugin + rebuild => undef, + }, +} #}}} + + sub htmlize (@) { #{{{ my %params=@_; my $content = $params{content};