diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-03-23 16:04:04 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-03-23 16:04:04 -0700 |
commit | 3ed1018c94acb0d846abb1660d4a0f5ff165472e (patch) | |
tree | 0e2b3a43b0be475184473a1fca8c023af9e39c30 | |
parent | 14e7cb362a1f0c339cd06fdf40a10889db27f4d1 (diff) | |
download | pandoc-3ed1018c94acb0d846abb1660d4a0f5ff165472e.tar.gz |
Updated changelog.
-rw-r--r-- | changelog | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -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) |