aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/creole.pm
diff options
context:
space:
mode:
authorBernd Zeimetz <bernd@bzed.de>2008-06-21 03:35:49 +0200
committerJoey Hess <joey@kodama.kitenet.net>2008-06-24 16:52:23 -0400
commit4a9567595a1e7daae0810986187391824db3f14a (patch)
tree8fc2aef9678a914deae06db3f80a005a90469138 /IkiWiki/Plugin/creole.pm
parentfbd8cea1b4d3ff335c9eb22030ff306a9538084b (diff)
downloadikiwiki-4a9567595a1e7daae0810986187391824db3f14a.tar
ikiwiki-4a9567595a1e7daae0810986187391824db3f14a.tar.gz
Disable handling of "bare" links by the creole plugin.
This change needs libtext-wikicreole-perl (>= 0.05-2). Also removing custom link function, there's no need for it - if it is not defined, the unmodified markup will be returned.
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);
} # }}}