summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/creole.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/creole.pm')
-rw-r--r--IkiWiki/Plugin/creole.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/creole.pm b/IkiWiki/Plugin/creole.pm
index f7f7a61e3..a259f49eb 100644
--- a/IkiWiki/Plugin/creole.pm
+++ b/IkiWiki/Plugin/creole.pm
@@ -17,7 +17,12 @@ sub htmlize (@) { #{{{
eval q{use Text::WikiCreole};
return $content if $@;
- return Text::WikiCreole::creole_parse($content);
+
+ # don't parse WikiLinks, ikiwiki already does
+ creole_link(sub { return shift });
+ creole_customlinks();
+
+ return creole_parse($content);
} # }}}
1