summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 04:47:02 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 04:47:02 +0000
commitef7692db619c6464d023bb707573879b003c2e44 (patch)
tree8569051809fc977f4874968ea7c09829977d5069
parenteb5550a6e4daf77754fb55d1867f718179182bdb (diff)
Updated changelog.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1644 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--changelog15
1 files changed, 15 insertions, 0 deletions
diff --git a/changelog b/changelog
index b5dab4027..6795afb80 100644
--- a/changelog
+++ b/changelog
@@ -11,6 +11,10 @@ pandoc (1.3)
adding up to the text width.)
+ Simple tables should now look better in most output formats.
+ * Added --indented-code-classes option. This specifies classes
+ to use for indented code blocks. (Thanks to buttock for the
+ patch; resolves Issue #87.)
+
* Improved performance of markdown reader by ~10% by
eliminating the need for a separate parsing pass for notes.
Raw notes are now stored on the first pass (which parses
@@ -18,8 +22,16 @@ pandoc (1.3)
the AST. The stateNotes field in ParserState is now a
list of [(String, String)] pairs instead of [(String, [Block])].
+ * In markdown reader, treat 4 or more * or _ in a row as literal
+ text. (Trying to parse long strings of * or _ as strong or emph
+ leads to exponential performance problems.)
+
+ * Markdown reader: Use + rather than %20 for spaces in URLs.
+
* Fixed htmlComment parser, adding a needed 'try'.
+ * Allow . _ and ~ in header identifiers.
+
* Specially mark code blocks that were "literate" in the input.
They can then be treated differently in the writers. This allows
authors to distinguish bits of the literate program they are writing
@@ -87,6 +99,9 @@ pandoc (1.3)
* Fixed Makefile so it doesn't try to build man pages in build-doc.
+ * Install pcre3.dll in Windows install script; this allows us to
+ package a version of pandoc with highlighting support.
+
pandoc (1.2.1)
[ John MacFarlane ]