X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/119e3e209dc2be25920d89e470a1e8d7b5d98f7b..e5b323a6331df4f400ea5a3eaa82441f85d41950:/IkiWiki/Plugin/mdwn.pm?ds=inline diff --git a/IkiWiki/Plugin/mdwn.pm b/IkiWiki/Plugin/mdwn.pm index c1f978ad3..8e037f5de 100644 --- a/IkiWiki/Plugin/mdwn.pm +++ b/IkiWiki/Plugin/mdwn.pm @@ -10,16 +10,24 @@ sub import { #{{{ IkiWiki::hook(type => "htmlize", id => "mdwn", call => \&htmlize); } # }}} +my $markdown_loaded=0; sub htmlize ($) { #{{{ my $content = shift; - if (! $INC{"/usr/bin/markdown"}) { - # Note: a proper perl module is available in Debian + if (! $markdown_loaded) { + # Note: This hack to make markdown run as a proper perl + # module. A proper perl module is available in Debian # for markdown, but not upstream yet. no warnings 'once'; $blosxom::version="is a proper perl module too much to ask?"; use warnings 'all'; - do "/usr/bin/markdown" || IkiWiki::error("failed to load /usr/bin/markdown: $!"); + + eval q{use Markdown}; + if ($@) { + do "/usr/bin/markdown" || + IkiWiki::error("failed to load Markdown.pm perl module ($@) or /usr/bin/markdown ($!)"); + } + $markdown_loaded=1; require Encode; }