installed as just Markdown by apt.
eval q{use Markdown};
if ($@) {
- do "/usr/bin/markdown" ||
- error("failed to load Markdown.pm perl module ($@) or /usr/bin/markdown ($!)");
+ eval q{use Text::Markdown};
+ if ($@) {
+ do "/usr/bin/markdown" ||
+ error("failed to load Markdown.pm perl module ($@) or /usr/bin/markdown ($!)");
+ }
}
$markdown_loaded=1;
require Encode;
* pagetemplate hooks are now also called when generating cgi pages.
* Add a favicon plugin, which simply adds a link tag for an icon to each
page (and cgis).
+ * Deal with CPAN installing Markdown as Text::Markdown, while it's
+ installed as just Markdown by apt.
- -- Joey Hess <joeyh@debian.org> Fri, 15 Sep 2006 19:39:36 -0400
+ -- Joey Hess <joeyh@debian.org> Fri, 15 Sep 2006 21:13:35 -0400
ikiwiki (1.26) unstable; urgency=low
I tried to come up with the magical invocation to allow either location
to be used by ikiwiki, but I couldn't do it.
--- JamesWestby
\ No newline at end of file
+-- JamesWestby
+
+Fixed, I think --[[Joey]]
+
+[[bugs/done]]