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.
master
Bernd Zeimetz 2008-06-21 03:35:49 +02:00 committed by Joey Hess
parent fbd8cea1b4
commit 4a9567595a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
} # }}}