From 0df2ad5dfe1d896520eceabfe362891f68ed3165 Mon Sep 17 00:00:00 2001 From: joey Date: Sat, 16 Sep 2006 01:50:29 +0000 Subject: * Support Text::Markdown from CPAN, which has a different interface from the original markdown or the one in Debian. --- IkiWiki/Plugin/mdwn.pm | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'IkiWiki/Plugin/mdwn.pm') diff --git a/IkiWiki/Plugin/mdwn.pm b/IkiWiki/Plugin/mdwn.pm index 0fc077f5e..c871e2a4d 100644 --- a/IkiWiki/Plugin/mdwn.pm +++ b/IkiWiki/Plugin/mdwn.pm @@ -10,28 +10,34 @@ sub import { #{{{ hook(type => "htmlize", id => "mdwn", call => \&htmlize); } # }}} -my $markdown_loaded=0; +my $markdown_sub; sub htmlize (@) { #{{{ my %params=@_; my $content = $params{content}; - 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. + if (! defined $markdown_sub) { + # Markdown is forked and splintered upstream and can be + # available in a variety of incompatible forms. Support + # them all. no warnings 'once'; $blosxom::version="is a proper perl module too much to ask?"; use warnings 'all'; eval q{use Markdown}; - if ($@) { + if (! $@) { + $markdown_sub=\&Markdown::Markdown; + } + else { eval q{use Text::Markdown}; - if ($@) { + if (! $@) { + $markdown_sub=\&Text::Markdown::Markdown; + } + else { do "/usr/bin/markdown" || error("failed to load Markdown.pm perl module ($@) or /usr/bin/markdown ($!)"); + $markdown_sub=\&Markdown::Markdown; } } - $markdown_loaded=1; require Encode; } -- cgit v1.2.3