* Use Text::Markdown::markdown, since version 1.0.16 of Text::Markdown

no longer supports Text::Markdown::Markdown. All old versions of
  Text::Markdown also support the lower-case version.
master
Joey Hess 2008-03-04 20:17:55 -05:00
parent 713845f342
commit 0217eebf49
2 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,7 @@ sub htmlize (@) { #{{{
else { else {
eval q{use Text::Markdown}; eval q{use Text::Markdown};
if (! $@) { if (! $@) {
$markdown_sub=\&Text::Markdown::Markdown; $markdown_sub=\&Text::Markdown::markdown;
} }
else { else {
do "/usr/bin/markdown" || do "/usr/bin/markdown" ||

3
debian/changelog vendored
View File

@ -14,6 +14,9 @@ ikiwiki (2.41) UNRELEASED; urgency=low
* rcs_diff is a new function that rcs modules should implement. * rcs_diff is a new function that rcs modules should implement.
* Implemented rcs_diff for git, svn, and tla (tla version untested). * Implemented rcs_diff for git, svn, and tla (tla version untested).
Mercurial and monotone still todo. Mercurial and monotone still todo.
* Use Text::Markdown::markdown, since version 1.0.16 of Text::Markdown
no longer supports Text::Markdown::Markdown. All old versions of
Text::Markdown also support the lower-case version.
-- martin f. krafft <madduck@debian.org> Sun, 02 Mar 2008 17:46:38 +0100 -- martin f. krafft <madduck@debian.org> Sun, 02 Mar 2008 17:46:38 +0100