X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/c4c31ea48f9118fd0ea29c40074a3e911c63b145..ca9e45c3ba2ad852123aeb8783eed07ed73ce00c:/IkiWiki/Plugin/creole.pm?ds=inline

diff --git a/IkiWiki/Plugin/creole.pm b/IkiWiki/Plugin/creole.pm
index a259f49eb..425e71043 100644
--- a/IkiWiki/Plugin/creole.pm
+++ b/IkiWiki/Plugin/creole.pm
@@ -5,13 +5,22 @@ 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
+		},
+}
+
+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