Browse Source

Markdown 1.0.4

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
master markdown_1.0.4
Kyle J. McKay 8 years ago
parent
commit
a147dcda33
  1. 9
      Markdown Readme.text
  2. 6
      Markdown.pl

9
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.

6
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

Loading…
Cancel
Save