aboutsummaryrefslogtreecommitdiff
path: root/test/docx/0_level_headers.native
AgeCommit message (Collapse)AuthorFilesLines
2021-05-28Docx reader: Read table column widths.Emily Bourke1-2/+2
2020-04-15Use the new builders, modify readers to preserve empty headersdespresc1-3/+1
The Builder.simpleTable now only adds a row to the TableHead when the given header row is not null. This uncovered an inconsistency in the readers: some would unconditionally emit a header filled with empty cells, even if the header was not present. Now every reader has the conditional behaviour. Only the XWiki writer depended on the header row being always present; it now pads its head as necessary.
2020-04-15Adapt to the removal of the RowSpan, ColSpan, RowHeadColumns accessorsdespresc1-12/+12
2020-04-15Adapt to the newest Table type, fix some previous adaptation issuesdespresc1-35/+40
- Writers.Native is now adapted to the new Table type. - Inline captions should now be conditionally wrapped in a Plain, not a Para block. - The toLegacyTable function now lives in Writers.Shared.
2020-04-15Implement the new Table typedespresc1-12/+36
2019-09-21[Docx Reader] Update testsNikolay Yakimov1-2/+2
Notice this commit updates lists.docx. The old test file contained references to "ListParagraph" style, which should never leak outside of pandoc, so I'm not sure what that was supposed to test for exactly.
2017-12-04Add `empty_paragraphs` extension.John MacFarlane1-8/+8
* 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-12-02Docx reader: don't strip out empty paragraphs.John MacFarlane1-8/+8
We now have the `--strip-empty-paragraphs` option for that, if you want it. Closes #2252. Updated docx reader tests. We use stripEmptyParagraphs to avoid changing too many tests. We should add new tests for empty paragraphs.
2017-08-06Docx reader: Add tests for avoiding zero-level header.Jesse Rosenthal1-0/+25