aboutsummaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-12 06:12:27 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-12 06:12:27 +0000
commitd9e7bc279c8b7aa1505a9b3b25f76c663213b81b (patch)
treeb1ffdd1151d4dacad594809825fd77443e016a9e /changelog
parentaaf6d72b17eb6d12b68a4f4c94ea65c025b4199e (diff)
downloadpandoc-d9e7bc279c8b7aa1505a9b3b25f76c663213b81b.tar.gz
Updated changelog.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1441 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'changelog')
-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.