]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/creole.pm
editpage: beautify redirection URLs, avoiding exposing the implementation detail...
[ikiwiki.git] / IkiWiki / Plugin / creole.pm
index 0c857d125bd1bc544c5a52a44f94a385cec13e08..7c729300d9a7e964a72dd137e67a6e42e3fc9991 100644 (file)
@@ -8,9 +8,18 @@ use strict;
 use IkiWiki 2.00;
 
 sub import { #{{{
+       hook(type => "getsetup", id => "creole", call => \&getsetup);
        hook(type => "htmlize", id => "creole", call => \&htmlize);
 } # }}}
 
+sub getsetup { #{{{
+       return
+               plugin => {
+                       safe => 1,
+                       rebuild => 1, # format plugin
+               },
+} #}}}
+
 sub htmlize (@) { #{{{
        my %params=@_;
        my $content = $params{content};