summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-09 11:18:08 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-09 11:18:08 -0800
commitbda1032f66239bbb83270f015c7fe956f000f190 (patch)
treedac99f984b81a72d403fab5bcdd807fe0277ee2b
parent3317e9dea847fdea12695a564031082d78e44d34 (diff)
Updated changelog, relann1.7.
-rw-r--r--changelog23
-rw-r--r--relann1.723
2 files changed, 40 insertions, 6 deletions
diff --git a/changelog b/changelog
index 1286b9303..6bb057bbc 100644
--- a/changelog
+++ b/changelog
@@ -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.
diff --git a/relann1.7 b/relann1.7
index 3fd0c598c..024c87ed8 100644
--- a/relann1.7
+++ b/relann1.7
@@ -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.