aboutsummaryrefslogtreecommitdiff
path: root/test/command/3494.md
AgeCommit message (Collapse)Author
2024-06-07Don't emit unnecessary classes in HTML tables (#9376)ThomasSoeiro
Pandoc used to emit a `header` class on the `tr` element that forms the table header. This is no longer needed, because `head > tr` will do the same thing. Similarly, pandoc used to emit `even` and `odd` classes on `tr`s, allowing striped styling. This is no longer needed, because one can use e.g. `tbody tr:nth-child(2n)`. We now omit these classes, which have a good chance of conflicting with classes used for other things. Closes #9325.
2018-10-07LaTeX reader: fix bugs omitting raw tex.John MacFarlane
The default is `-raw_tex`, so no raw tex should result unless we explicitly say `+raw_tex`. Previously some raw commands did make it through. Closes #4527.
2017-12-04Add `empty_paragraphs` extension.John MacFarlane
* Deprecate `--strip-empty-paragraphs` option. Instead we now use an `empty_paragraphs` extension that can be enabled on the reader or writer. By default, disabled. * Add `Ext_empty_paragraphs` constructor to `Extension`. * Revert "Docx reader: don't strip out empty paragraphs." This reverts commit d6c58eb836f033a48955796de4d9ffb3b30e297b. * Implement `empty_paragraphs` extension in docx reader and writer, opendocument writer, html reader and writer. * Add tests for `empty_paragraphs` extension.
2017-07-12Make sure \write18 is parsed as raw LaTeX.John MacFarlane
The change is in the LaTeX reader's treatment of raw commands, but it also affects the Markdown reader.
2017-05-25Update command tests to include stderr output.John MacFarlane
2017-03-06LaTeX reader: allow newpage, clearpage, pagebreak in inline contextsJohn MacFarlane
as well as block contexts. Closes #3494.