X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/a63929f6cc7778ffc4ba57d784cdf2206ec650c7..8e072cf1b075389b0bcf9e94e3ce3cf97ef48d5c:/IkiWiki/Plugin/mdwn.pm diff --git a/IkiWiki/Plugin/mdwn.pm b/IkiWiki/Plugin/mdwn.pm index 4ddf097ba..68765c6b8 100644 --- a/IkiWiki/Plugin/mdwn.pm +++ b/IkiWiki/Plugin/mdwn.pm @@ -16,7 +16,7 @@ sub getsetup () { plugin => { safe => 1, rebuild => 1, # format plugin - section => "core", + section => "format", }, multimarkdown => { type => "boolean", @@ -52,7 +52,7 @@ sub htmlize (@) { } if (! defined $markdown_sub) { eval q{use Text::Markdown}; - if (! $@) { + if (1) {#! $@) { # Text::Markdown throws this but works. Shrug. if (Text::Markdown->can('markdown')) { $markdown_sub=\&Text::Markdown::markdown; }