2 # Markdown markup language
3 package IkiWiki::Plugin::mdwn;
10 hook(type => "htmlize", id => "mdwn", call => \&htmlize);
14 sub htmlize (@) { #{{{
16 my $content = $params{content};
18 if (! defined $markdown_sub) {
19 # Markdown is forked and splintered upstream and can be
20 # available in a variety of forms. Support them all.
22 $blosxom::version="is a proper perl module too much to ask?";
25 if (exists $config{multimarkdown} && $config{multimarkdown}) {
26 eval q{use Text::MultiMarkdown};
28 error(gettext("multimarkdown is enabled, but Text::MultiMarkdown is not installed"));
31 Text::MultiMarkdown::markdown(shift, {use_metadata => 0});
35 eval q{use Text::Markdown};
37 if (Text::Markdown->can('markdown')) {
38 $markdown_sub=\&Text::Markdown::markdown;
41 $markdown_sub=\&Text::Markdown::Markdown;
47 $markdown_sub=\&Markdown::Markdown;
50 do "/usr/bin/markdown" ||
51 error(sprintf(gettext("failed to load Markdown.pm perl module (%s) or /usr/bin/markdown (%s)"), $@, $!));
52 $markdown_sub=\&Markdown::Markdown;
60 # Workaround for perl bug (#376329)
61 $content=Encode::encode_utf8($content);
62 eval {$content=&$markdown_sub($content)};
64 eval {$content=&$markdown_sub($content)};
65 print STDERR $@ if $@;
67 $content=Encode::decode_utf8($content);