summaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-10-23 23:21:42 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2016-10-23 23:21:42 +0200
commitfc061e6ad68220ea972e12600682bcadc186d89f (patch)
tree590079f21ab79582f8a6e16f264bd74bab9fe70d /changelog
parentbf72a482ebf8483028f587fb538d35e2b18dade4 (diff)
Updated changelog.
Diffstat (limited to 'changelog')
-rw-r--r--changelog18
1 files changed, 16 insertions, 2 deletions
diff --git a/changelog b/changelog
index 2b2e35650..89ed162a8 100644
--- a/changelog
+++ b/changelog
@@ -27,6 +27,11 @@ pandoc (1.17.3)
is enabled), Org-mode (`VERSE` blocks), RST (line blocks). In
other output formats, a paragraph with hard linebreaks is emitted.
+ * Allow binary formats to be written to stdout (but not to tty) (#2677).
+ Only works on posix, since we use the unix library to check whether
+ output is to tty. On Windows, pandoc works as before and always requires
+ an output file parameter for binary formats.
+
* Changed JSON output format (Jesse Rosenthal). Previously we used
generically generated JSON, but this was subject to change depending
on the version of aeson pandoc was compiled with. To ensure stability,
@@ -259,9 +264,10 @@ pandoc (1.17.3)
`foo bar.jpg` becomes `foo_bar.jpg`. This was already done
for internal links, but it also needs to happen for images.
- * Man writer:
+ * ICML writer: replace partial function (!!) in table handling (#3175,
+ Mauro Bieg).
- + Allow section numbers that are not a single digit (#3089).
+ * Man writer: allow section numbers that are not a single digit (#3089).
* AsciiDoc writer: avoid unnecessary use of "unconstrained" emphasis
(#3068). In AsciiDoc, you must use a special form of emphasis
@@ -352,11 +358,19 @@ pandoc (1.17.3)
* Text.Pandoc.Shared: Add `linesToBlock` function (Albert Krewinkel).
+ * Text.Pandoc.Parsing.emailAddress: tighten up parsing of email
+ addresses. Technically `**@user` is a valid email address, but if we
+ allow things like this, we get bad results in markdown flavors
+ that autolink raw email addresses (see #2940). So we exclude a few
+ valid email addresses in order to avoid these more common bad cases.
+
* Text.Pandoc.PDF: Don't crash with nonexistent image (#3100). Instead,
emit the alt text, emphasized. This accords with what the ODT writer
currently does. The user will still get a warning about a nonexistent
image.
+ * Fix example in API documentation (#3176, Thomas Weißschuh).
+
* Tell where to get tarball in INSTALL (#3062).
* Rename README to MANUAL.txt and add GitHub-friendly README.md