From a147dcda33ba40ca49fcf845eb94b4d90c840076 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sun, 5 Jun 2016 11:49:55 -0700 Subject: [PATCH] Markdown 1.0.4 Signed-off-by: Kyle J. McKay --- Markdown Readme.text | 9 +++++++++ Markdown.pl | 6 ++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Markdown Readme.text b/Markdown Readme.text index edd2f10..8186afc 100644 --- a/Markdown Readme.text +++ b/Markdown Readme.text @@ -162,6 +162,15 @@ Markdown.pl source code for more information. Version History --------------- +1.0.4 (05 Jun 2016): + ++ Markdown.pl can now be require'd and the Markdown function called + repeatedly by external code. + ++ Backticks (```) delimited code blocks are now handled better and are + no longer subject to any further accidental processing. + + 1.0.3 (06 Sep 2015): + Added support for --htmlroot option to set a URL prefix. diff --git a/Markdown.pl b/Markdown.pl index 3852d37..685b87b 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -22,8 +22,8 @@ use vars qw($VERSION @ISA @EXPORT_OK); @EXPORT_OK = qw(Markdown); $INC{__PACKAGE__.'.pm'} = $INC{basename(__FILE__)} unless exists $INC{__PACKAGE__.'.pm'}; -$VERSION = '1.0.3'; -# Sun 06 Sep 2015 +$VERSION = '1.0.4'; +# Sun 05 Jun 2016 ## Disabled; causes problems under Perl 5.6.1: @@ -1528,6 +1528,8 @@ Display Markdown's help. See the readme file for detailed release notes for this version. +1.0.4 - 05 Jun 2016 + 1.0.3 - 06 Sep 2015 1.0.2 - 03 Sep 2015 -- 2.11.4.GIT