From 1fbbc2badcdfc6f1f3a17ee79aee3126267e9b4b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 9 Jan 2016 13:25:48 -0800 Subject: Updated changelog. --- changelog | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) (limited to 'changelog') diff --git a/changelog b/changelog index fff7e3129..361930c64 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,60 @@ +pandoc (1.16.0.1) + + * Fixed regression with `--latex-engine` (#2618). In 1.16 `--latex-engine` + raises an error if a full path is given. + + * Org reader: Fix function dropping subtrees tagged `:noexport` + (Albert Krewinkel, #2628): + + * Markdown reader: renormalize table column widths if they exceed 100% + (#2626). + + * Textile reader: don't allow block HTML tags in inline contexts. + The reader previously did allow this, following redcloth, + which happily parses + + Html blocks can be
inlined
as well. + + as + +

Html blocks can be

inlined
as well.

+ + This is invalid HTML. The above sample now produces; + +

Html blocks can be

+
+

inlined

+
+

as well.

+ + * Improved default template lookup for custom lua scripts (#2625). + Previously, if you tried to do `pandoc -s -t /path/to/lua/script.lua`, + pandoc would look for the template in + `~/.pandoc/templates/default./path/to/lua/script.lua`. + With this change it will look in the more reasonable + `~/.pandoc/templates/default.script.lua`. This makes it possible to + store default templates for custom writers. + + * RST, Markdown writers: Fixed rendering of grid tables with blank rows + (#2615). + + * LaTeX writer: restore old treatment of Span (#2624). A Span is + now rendered with surrounding `{}`, as it was before 1.16. + + * Entity handling fixes: improved handling of entities like + `⟨` that require a trailing semicolon. Allow uppercase + `x` in numerical hexidecimal character references, working + around a tagsoup bug. + + * `stack.yaml` - use lts-4.0, but with older aeson to avoid excessive + memory use on compile. With aeson 0.10 we were getting an out of + memory error on a 2GB Ubuntu 64-bit VM. + + * Improved deb package creation script. Made `DPKGVER` work. + Renamed `COMMIT` to `TREE`. You should now be able to do + `TREE=1.16.0.1 DPKGVER=2 make deb`. + + pandoc (1.16) * Added `Attr` field to `Link` and `Image` (Mauro Bieg, #261, API change). -- cgit v1.2.3