X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/c4c31ea48f9118fd0ea29c40074a3e911c63b145..61426a71868a6863115b0a4e0467756e97953092:/IkiWiki/Plugin/creole.pm diff --git a/IkiWiki/Plugin/creole.pm b/IkiWiki/Plugin/creole.pm index a259f49eb..7c729300d 100644 --- a/IkiWiki/Plugin/creole.pm +++ b/IkiWiki/Plugin/creole.pm @@ -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}; @@ -19,8 +28,8 @@ sub htmlize (@) { #{{{ return $content if $@; # don't parse WikiLinks, ikiwiki already does - creole_link(sub { return shift }); creole_customlinks(); + creole_custombarelinks(); return creole_parse($content); } # }}}