aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelog11
1 files changed, 10 insertions, 1 deletions
diff --git a/changelog b/changelog
index e7de3365b..70e203d39 100644
--- a/changelog
+++ b/changelog
@@ -1,4 +1,4 @@
-pandoc (0.47)
+pandoc (1.0)
[ Andrea Rossato ]
@@ -183,6 +183,15 @@ pandoc (0.47)
====
parsed by Markdown.pl as an H1 header with contents "# hi".
+ * Markdown reader: Treat "mixed" lists the same way as Markdown.pl does.
+ The marker on the first list item determines the type of the whole
+ list. Thus, a list like
+ 1. one
+ - two
+ * three
+ gets parsed as a single ordered list. (Previous versions of pandoc
+ treated this as an ordered list with an unordered sublist.)
+
* Markdown smart typography:
+ Em dashes no longer eat surrounding whitespace. Resolves Issue #69.