aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-03-23 16:04:04 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2010-03-23 16:04:04 -0700
commit3ed1018c94acb0d846abb1660d4a0f5ff165472e (patch)
tree0e2b3a43b0be475184473a1fca8c023af9e39c30
parent14e7cb362a1f0c339cd06fdf40a10889db27f4d1 (diff)
downloadpandoc-3ed1018c94acb0d846abb1660d4a0f5ff165472e.tar.gz
Updated changelog.
-rw-r--r--changelog22
1 files changed, 14 insertions, 8 deletions
diff --git a/changelog b/changelog
index a1f94adf3..569a3131f 100644
--- a/changelog
+++ b/changelog
@@ -3,17 +3,23 @@ pandoc (1.5.1)
[ John MacFarlane ]
* Fixed treatment of unicode characters in URIs.
- + Export stringToURI from Shared. This is used in the HTML
- writer for all URIs. It properly URI-encodes high
- characters (> 127), leaving everything else (including
- symbols and spaces) the same.
- + Modified unsanitaryURI to allow UTF8 characters in a URI.
-
- * Setup.hs: Don't assume that the build directory is "dist."
+ + Shared now exports escapeURI and unescapeURI. These handle
+ UTF8 encoding and decoding as well as URI escaping/unescaping.
+ + Shared: uri and emailAddress now return a pair of the original
+ parsed text and the escaped URI (in the latter case, with
+ the mailto: prefix).
+ + HTML reader: unsanitaryURI has been modified to allow unicode
+ high characters in a URI.
+ + Readers: All link and image URIs are now escaped using
+ escapeURI.
+ + Markdown and RST writers: unescapeURI is used so that URIs
+ in these formats are human-readable.
+
+ * Setup.hs: Don't assume that the build directory is "dist".
Instead, get it from localBuildInfo.
* OpenDocument writer: Use a Map for stTextStyleAttr.
- This avoids duplicates (and invalid xml).
+ This avoids duplicates (and invalid xml). Resolves Issue #222.
pandoc (1.5.0.1)