aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/creole.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/creole.pm')
-rw-r--r--IkiWiki/Plugin/creole.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/creole.pm b/IkiWiki/Plugin/creole.pm
index a259f49eb..0c857d125 100644
--- a/IkiWiki/Plugin/creole.pm
+++ b/IkiWiki/Plugin/creole.pm
@@ -19,8 +19,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);
} # }}}