aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-10-13 21:39:44 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-10-13 21:39:44 +0000
commitd6d49db5be1d38da65f13e3ddf4c627ec3f6fd75 (patch)
tree93839bffe49c5e2a0773452e3724c2a1c1d80d78
parent8144c54f826d4d8b995e0e267a908dff459704ad (diff)
downloadpandoc-d6d49db5be1d38da65f13e3ddf4c627ec3f6fd75.tar.gz
Updated changelog.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1051 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--debian/changelog18
1 files changed, 15 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 1a73a93c5..2ce7e58d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -27,9 +27,18 @@ pandoc (0.45) unstable; urgency=low
* Markdown reader: Require space before title in links and references.
This fixes a bug in parsing URLs like http://silly/url(withparen).
- * RST reader: Fixed bug in parsing of code blocks. Previously a
- full tab indent was required, but RST allows code to be indented
- any amount. Resolves Issue #27.
+ * RST reader:
+
+ + Fixed bug in parsing of code blocks. Previously a full tab indent
+ was required, but RST allows code to be indented any amount.
+ Resolves Issue #27.
+ + Allow field lists to be indented.
+ + Parse the contents of field lists instead of treating as a raw string.
+ + Represent field lists as definition lists instead of blockquotes.
+ + Fixed bug in which metadata would be overridden if the document
+ contained multiple field lists.
+ + Parse fields associated with '.. image::' blocks, and use 'alt'
+ field, if given, for image alt and title attributes.
* HTML writer: Don't produce HTML for table of contents if there are
no headers. (This would be an empty list, which is invalid XHTML.)
@@ -68,6 +77,9 @@ pandoc (0.45) unstable; urgency=low
+ If label for a link reference contains a colon, surround it by `
signs so it won't be interpreted as the end of the link label.
+ * Text.Pandoc.Shared: save and restore position in parseFromString,
+ so that accurate error messages can be given.
+
* Main.hs (tabFilter): Treat '\r' at end of line as newline (in
addition to "\r\n" and '\n').