Browse Source

Markdown 1.0.3

Update version number to 1.0.3.

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
master markdown_1.0.3
Kyle J. McKay 9 years ago
parent
commit
1bccf7f431
  1. 11
      Markdown Readme.text
  2. 6
      Markdown.pl
  3. 2
      syntax.text

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

6
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

2
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:

Loading…
Cancel
Save