From 1bccf7f431f8790b02ff88d5e6a40ce8bc6f1009 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sun, 6 Sep 2015 04:29:02 -0700 Subject: [PATCH] Markdown 1.0.3 Update version number to 1.0.3. Signed-off-by: Kyle J. McKay --- Markdown Readme.text | 11 ++++++++++- Markdown.pl | 6 ++++-- syntax.text | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Markdown Readme.text b/Markdown Readme.text index 01ba994..edd2f10 100644 --- a/Markdown Readme.text +++ b/Markdown Readme.text @@ -1,7 +1,7 @@ Markdown ======== -Version 1.0.2 - Thu 03 Sep 2015 +Version 1.0.3 - Sun 06 Sep 2015 John Gruber Kyle J. McKay @@ -162,6 +162,15 @@ Markdown.pl source code for more information. Version History --------------- +1.0.3 (06 Sep 2015): + ++ Added support for --htmlroot option to set a URL prefix. + ++ Relaxed matching rule for non-indented code blocks. + ++ Added support for --imageroot option to set an img URL prefix. + + 1.0.2 (03 Sep 2015): + Added support for -h and --help to display Markdown.pl help. diff --git a/Markdown.pl b/Markdown.pl index 8e7f8f5..42a320b 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -15,8 +15,8 @@ use warnings; use Digest::MD5 qw(md5_hex); use vars qw($VERSION); -$VERSION = '1.0.2'; -# Thu 03 Sep 2015 +$VERSION = '1.0.3'; +# Sun 06 Sep 2015 ## Disabled; causes problems under Perl 5.6.1: # use utf8; @@ -1486,6 +1486,8 @@ Display Markdown's help. See the readme file for detailed release notes for this version. +1.0.3 - 06 Sep 2015 + 1.0.2 - 03 Sep 2015 1.0.1 - 14 Dec 2004 diff --git a/syntax.text b/syntax.text index e9564d2..bda6d73 100644 --- a/syntax.text +++ b/syntax.text @@ -638,7 +638,7 @@ The following three link definitions are equivalent: [foo]: http://example.com/ 'Optional Title Here' [foo]: http://example.com/ (Optional Title Here) -**Note:** There is a known bug in Markdown.pl 1.0.2 which prevents +**Note:** There is a known bug in Markdown.pl 1.0.3 which prevents single quotes from being used to delimit link titles. The link URL may, optionally, be surrounded by angle brackets: -- 2.11.4.GIT