aboutsummaryrefslogtreecommitdiff
path: root/test/pptx/background-image
AgeCommit message (Collapse)AuthorFilesLines
2021-10-04Powerpoint writer: consolidate text runs when possible.John MacFarlane4-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 MacFarlane4-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 MacFarlane4-0/+0
This should reduce the size of the generated files.
2021-09-16pptx: Support specifying slide background imagesEmily Bourke5-0/+17
In the reveal-js output, it’s possible to use reveal’s `data-background-image` class on a slide’s title to specify a background image for the slide. With this commit, it’s possible to use `background-image` in the same way for pptx output. Only the “stretch” mode is supported, and the background image is centred around the slide in the image’s larger axis, matching the observed default behaviour of PowerPoint. - Support `background-image` per slide. - Add tests. - Update manual.