From ee27d5356f3459a8d279e3d6b7eaf9d94668f530 Mon Sep 17 00:00:00 2001 From: Albert Ting Date: Mon, 9 Mar 2015 13:45:48 +0000 Subject: Bug 1130691: Support markdown tables r=dkl,a=glob --- Bugzilla/Install/Requirements.pm | 6 +++--- Bugzilla/Markdown.pm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index e9cf230c4..e8a90cab7 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -404,9 +404,9 @@ sub OPTIONAL_MODULES { # Markdown { - package => 'Text-Markdown', - module => 'Text::Markdown', - version => '1.0.26', + package => 'Text-MultiMarkdown', + module => 'Text::MultiMarkdown', + version => '1.000035', feature => ['markdown'], }, diff --git a/Bugzilla/Markdown.pm b/Bugzilla/Markdown.pm index ed5608025..e9b0d1a17 100644 --- a/Bugzilla/Markdown.pm +++ b/Bugzilla/Markdown.pm @@ -16,7 +16,7 @@ use Bugzilla::Template; use Digest::MD5 qw(md5_hex); -use parent qw(Text::Markdown); +use parent qw(Text::MultiMarkdown); @Bugzilla::Markdown::EXPORT = qw(new); @@ -489,7 +489,7 @@ Bugzilla::Markdown - Generates HTML output from structured plain-text input. Bugzilla::Markdown implements a Markdown engine that produces an HTML-based output from a given plain-text input. -The majority of the implementation is done by C +The majority of the implementation is done by C CPAN module. It also applies the linkifications done in L to the input resulting in an output which is a combination of both Markdown structures and those defined by Bugzilla itself. -- cgit v1.2.3-24-g4f1b