X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/4a9567595a1e7daae0810986187391824db3f14a..e96cf38eccd219714140f221090d2e7751fd4ee0:/IkiWiki/Plugin/creole.pm diff --git a/IkiWiki/Plugin/creole.pm b/IkiWiki/Plugin/creole.pm index 0c857d125..a1e4b31d3 100644 --- a/IkiWiki/Plugin/creole.pm +++ b/IkiWiki/Plugin/creole.pm @@ -5,13 +5,23 @@ package IkiWiki::Plugin::creole; use warnings; use strict; -use IkiWiki 2.00; +use IkiWiki 3.00; -sub import { #{{{ +sub import { + hook(type => "getsetup", id => "creole", call => \&getsetup); hook(type => "htmlize", id => "creole", call => \&htmlize); -} # }}} +} -sub htmlize (@) { #{{{ +sub getsetup { + return + plugin => { + safe => 1, + rebuild => 1, # format plugin + section => "format", + }, +} + +sub htmlize (@) { my %params=@_; my $content = $params{content}; @@ -23,6 +33,6 @@ sub htmlize (@) { #{{{ creole_custombarelinks(); return creole_parse($content); -} # }}} +} 1