]> sipb.mit.edu Git - ikiwiki.git/commitdiff
* Use Text::Markdown::markdown, since version 1.0.16 of Text::Markdown
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 5 Mar 2008 01:17:55 +0000 (20:17 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 5 Mar 2008 01:17:55 +0000 (20:17 -0500)
  no longer supports Text::Markdown::Markdown. All old versions of
  Text::Markdown also support the lower-case version.

IkiWiki/Plugin/mdwn.pm
debian/changelog

index 254ab51d03b078afbbeed1727fdb56b18a6c1a1c..cabf44aa57ba11d7516ea3e110a7f39f0f3e450a 100644 (file)
@@ -30,7 +30,7 @@ sub htmlize (@) { #{{{
                else {
                        eval q{use Text::Markdown};
                        if (! $@) {
-                               $markdown_sub=\&Text::Markdown::Markdown;
+                               $markdown_sub=\&Text::Markdown::markdown;
                        }
                        else {
                                do "/usr/bin/markdown" ||
index a9d530c1eed18d10042c3b6999f0e2845c62d081..1edab22fb4165d5d6f75a98051f8705b77c3f97c 100644 (file)
@@ -14,6 +14,9 @@ ikiwiki (2.41) UNRELEASED; urgency=low
   * rcs_diff is a new function that rcs modules should implement.
   * Implemented rcs_diff for git, svn, and tla (tla version untested).
     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