diff options
-rw-r--r-- | changelog | 23 | ||||
-rw-r--r-- | relann1.7 | 23 |
2 files changed, 40 insertions, 6 deletions
@@ -49,6 +49,9 @@ pandoc (1.7) yields `3+4`. Since the macros are applied in the reader, they will work in every output format, not just LaTeX. + * LaTeX macros can also be used in LaTeX documents (both in math + and in non-math contexts). + * Footnotes are now supported in the RST reader. (Note, however, that pandoc ignores the numeral or symbol used in the note; footnotes are put in an auto-numbered ordered list.) @@ -68,6 +71,8 @@ pandoc (1.7) * Added support for listings package in LaTeX reader (Puneeth Chaganti). + * Added support for simple tables in the LaTeX reader. + * Significant performance improvements in many readers and writers. [API and program changes] @@ -96,6 +101,9 @@ pandoc (1.7) `http(s)` scheme. Previously pandoc would treat some Windows pathnames beginning with `C:/` as URIs. + * pandoc now adds a newline to the end of its output in fragment + mode (= not `--standalone`). + * The `--sanitize-html` option and the `stateSanitize` field in `ParserState` have been removed. Sanitization is better done in the resulting HTML using `xss-sanitize`, which is based on pandoc's @@ -164,6 +172,11 @@ pandoc (1.7) * LaTeX writer: Use `\paragraph`, `\subparagraph` for level 4,5 headers. + * LaTeX reader: + + + `\label{foo}` and `\ref{foo}` now become `{foo}` instead of `(foo)`. + + `\index{}` commands are skipped. + * Added `fontsize` variable to default LaTeX template. This makes it easy to set the font size using `markdown2pdf`: `markdown2pdf -V fontsize=12pt input.txt`. @@ -218,9 +231,13 @@ pandoc (1.7) + Better handling of intraword underscores, avoiding exponential slowdowns in some cases. Resolves Issue #182. - * LaTeX reader: Improved parsing of preamble. - Previously you'd get unexpected behavior on a document that - contained `\begin{document}` in, say, a verbatim block. + * LaTeX reader: + + + Improved parsing of preamble. + Previously you'd get unexpected behavior on a document that + contained `\begin{document}` in, say, a verbatim block. + + Allow spaces between '\begin' or '\end' and '{'. + + Support \L and \l. * OpenDocument writer: don't print raw TeX. @@ -61,6 +61,9 @@ New features yields `3+4`. Since the macros are applied in the reader, they will work in every output format, not just LaTeX. + * LaTeX macros can also be used in LaTeX documents (both in math + and in non-math contexts). + * Footnotes are now supported in the RST reader. (Note, however, that pandoc ignores the numeral or symbol used in the note; footnotes are put in an auto-numbered ordered list.) @@ -80,6 +83,8 @@ New features * Added support for listings package in LaTeX reader (Puneeth Chaganti). + * Added support for simple tables in the LaTeX reader. + * Significant performance improvements in many readers and writers. API and program changes @@ -109,6 +114,9 @@ API and program changes `http(s)` scheme. Previously pandoc would treat some Windows pathnames beginning with `C:/` as URIs. + * pandoc now adds a newline to the end of its output in fragment + mode (= not `--standalone`). + * The `--sanitize-html` option and the `stateSanitize` field in `ParserState` have been removed. Sanitization is better done in the resulting HTML using `xss-sanitize`, which is based on pandoc's @@ -177,6 +185,11 @@ API and program changes * LaTeX writer: Use `\paragraph`, `\subparagraph` for level 4,5 headers. + * LaTeX reader: + + + `\label{foo}` and `\ref{foo}` now become `{foo}` instead of `(foo)`. + + `\index{}` commands are skipped. + * Added `fontsize` variable to default LaTeX template. This makes it easy to set the font size using `markdown2pdf`: `markdown2pdf -V fontsize=12pt input.txt`. @@ -233,9 +246,13 @@ Bug fixes + Better handling of intraword underscores, avoiding exponential slowdowns in some cases. Resolves Issue #182. - * LaTeX reader: Improved parsing of preamble. - Previously you'd get unexpected behavior on a document that - contained `\begin{document}` in, say, a verbatim block. + * LaTeX reader: + + + Improved parsing of preamble. + Previously you'd get unexpected behavior on a document that + contained `\begin{document}` in, say, a verbatim block. + + Allow spaces between '\begin' or '\end' and '{'. + + Support \L and \l. * OpenDocument writer: don't print raw TeX. |