Updated changelog.

This commit is contained in:
John MacFarlane 2014-12-19 11:36:00 -08:00
parent 005eda2f02
commit 11fc7308b7

View file

@ -35,17 +35,17 @@ pandoc (1.13.2)
- Added `sourceCode` to classes for `:code:` role, and anything - Added `sourceCode` to classes for `:code:` role, and anything
inheriting from it. inheriting from it.
- Add the name of the custom role to classes if the Inline constructor - Add the name of the custom role to classes if the Inline
supports Attr. constructor supports Attr.
- If the custom role directive does not specify a parent role, inherit - If the custom role directive does not specify a parent role,
from the `:span:` role. inherit from the `:span:` role.
This differs somewhat from the `rst2xml.py` behavior. If a custom role This differs somewhat from the `rst2xml.py` behavior. If a custom
inherits from another custom role, Pandoc will attach both roles' names role inherits from another custom role, Pandoc will attach both
as classes. `rst2xml.py` will only use the class of the directly invoked roles' names as classes. `rst2xml.py` will only use the class of
role (though in the case of inheriting from a `:code:` role with a the directly invoked role (though in the case of inheriting from a
`:language:` defined, it will also provide the inherited language as a `:code:` role with a `:language:` defined, it will also provide the
class). inherited language as a class).
+ Warn about ignored fields in role directives. + Warn about ignored fields in role directives.
* LaTeX reader: * LaTeX reader:
@ -88,9 +88,9 @@ pandoc (1.13.2)
There could be new top-level headers after making lists, so we have to There could be new top-level headers after making lists, so we have to
rewrite links after that. rewrite links after that.
+ Use polyglot header list (Jesse Rosenthal). + Use polyglot header list (Jesse Rosenthal).
We're just keeping a list of header formats that different languages use We're just keeping a list of header formats that different languages
as their default styles. At the moment, we have English, German, Danish, use as their default styles. At the moment, we have English, German,
and French. We can continue to add to this. Danish, and French. We can continue to add to this.
This is simpler than parsing the styles file, and perhaps less This is simpler than parsing the styles file, and perhaps less
error-prone, since there seems to be some variations, even within a error-prone, since there seems to be some variations, even within a
language, of how a style file will define headers. language, of how a style file will define headers.
@ -168,6 +168,11 @@ pandoc (1.13.2)
since LaTeX can't deal with display math in simple tables. since LaTeX can't deal with display math in simple tables.
+ Escape spaces in code (#1694, Bjorn Buckwalter). + Escape spaces in code (#1694, Bjorn Buckwalter).
* MediaWiki writer:
+ Fixed links with URL = text. Previously these were rendered as bare
words, even if the URL was not an absolute URL (#1825).
* ICML writer: * ICML writer:
+ Don't force all citations into footnotes. + Don't force all citations into footnotes.