From 5d8bc32253e5f4acea7b107e83ad47e3eb5cb92a Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Fri, 22 Nov 2019 06:05:45 -0700 Subject: [PATCH] Markdown version 1.1.8 Signed-off-by: Kyle J. McKay --- Markdown.pl | 4 +++- README | 44 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/Markdown.pl b/Markdown.pl index 9b76221..77c1b77 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -25,7 +25,7 @@ BEGIN {*COPYRIGHT = Copyright (C) 2015,2016,2017,2018,2019 Kyle J. McKay All rights reserved. "; -*VERSION = \"1.1.8-PRE" +*VERSION = \"1.1.8" } require Exporter; @@ -3488,6 +3488,8 @@ Z<> See the F file for detailed release notes for this version. =over +=item Z<> 1.1.8 - 22 Nov 2019 + =item Z<> 1.1.7 - 14 Feb 2018 =item Z<> 1.1.6 - 03 Jan 2018 diff --git a/README b/README index b2e0a12..317943a 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ Markdown ======== -Version 1.1.7 +Version 1.1.8 John Gruber Kyle J. McKay @@ -173,6 +173,48 @@ Markdown.pl source code for more information. Version History --------------- +1.1.8 (22 Nov 2019): + +* correct a number of issues with improperly nested markup involving + links, blockquotes, strong and emphasis etc. + +* parse nested `[`...`]` and `(`...`)` properly when inside links + +* avoid getting confused by nested lists + +* allow first blockquote line to be empty + +* as-documented single-quote titles in link definitions now work + +* when escaping a single-quote use ' instead of ' + +* ignore control characters in input (other than whitespace) + +* wiki links can be processed by providing a new `--wiki` option + +* an empty table header row is omitted from the output + +* table rows can be joined with a trailing `\` (see syntax.md) + +* add several new XML validation options + +* perform XML validation and tag sanitation by default (see help) + +* tab expansion in shifted backticks-delimited code blocks has + been adjusted to better match expected behavior + +* all atx-style header levels now get anchors not just levels 1-3 + +* internal document "fragment" links `[...](#section)` hook up to + the target section much more reliably now + +* backticks-delimited code blocks can now specify a syntax language + name that ends with a `#` character + +* more lists that were not being recognized before because they did + not have a preceding blank line are now recognized + + 1.1.7 (14 Feb 2018): * Markdown.pl: _PrefixURL more intelligently