diff options
author | Bernd Zeimetz <bernd@bzed.de> | 2008-06-21 03:35:49 +0200 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-06-24 16:52:23 -0400 |
commit | 4a9567595a1e7daae0810986187391824db3f14a (patch) | |
tree | 8fc2aef9678a914deae06db3f80a005a90469138 | |
parent | fbd8cea1b4d3ff335c9eb22030ff306a9538084b (diff) |
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.
-rw-r--r-- | IkiWiki/Plugin/creole.pm | 2 |
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); } # }}} |