aboutsummaryrefslogtreecommitdiff
path: root/test/pptx/two-column/all-text/templated.pptx
AgeCommit message (Collapse)AuthorFilesLines
2021-10-04Powerpoint writer: consolidate text runs when possible.John MacFarlane1-0/+0
This slims down the output files by avoiding unnecessary text run elements. Updated golden tests.
2021-10-04Revert "Powerpoint writer: consolidate text run nodes."John MacFarlane1-0/+0
This reverts commit 62f83aa48633af477913bde6f615fe9f8793901a. This was already being done, it seems. I misidentified the problem; it is really with `Str ""` nodes.
2021-10-04Powerpoint writer: consolidate text run nodes.John MacFarlane1-0/+0
This should reduce the size of the generated files.
2021-09-13pptx: Fix logic for choosing Comparison layoutEmily Bourke1-0/+0
There was a mistake in the logic used to choose between the Comparison and Two Content layouts: if one column contained only non-text (an image or a table) and the other contained only text, the Comparison layout was chosen instead of the desired Two Content layout. This commit fixes that logic: > If either column contains text followed by non-text, use Comparison. Otherwise, use Two Content. It also adds a test asserting this behaviour.