]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/creole.pm
Merge commit 'smcv/recentchanges'
[ikiwiki.git] / IkiWiki / Plugin / creole.pm
index a259f49ebe386225f982ac30e04d0c3eb5c73015..3c46a48df1e43336763361d3a9d4f3ded41cf76a 100644 (file)
@@ -7,11 +7,20 @@ use warnings;
 use strict;
 use IkiWiki 2.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
+               },
+}
+
+sub htmlize (@) {
        my %params=@_;
        my $content = $params{content};
 
@@ -19,10 +28,10 @@ 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);
-} # }}}
+}
 
 1