diff options
| author | Anton Antich <[email protected]> | 2025-11-09 13:48:14 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-11-24 22:37:39 +0100 |
| commit | ec75b693e5618c12ddac872d48e084436f1e1b48 (patch) | |
| tree | 942edb1022128c5f769b928ee5ba3b0a6ee6b4f7 /pandoc.cabal | |
| parent | 5d3b2916d616902d205146c108629053516fd9f4 (diff) | |
Support pptx (PowerPoint) as an input format.
New module `Text.Pandoc.Readers.Pptx`,
exporting `readPptx`. [API change]
Factored out some common OOXML functions from
Text.Pandoc.Readers.Docx.Util into a non-exported module
Text.Pandoc.Readers.OOXML.Shared.
Diffstat (limited to 'pandoc.cabal')
| -rw-r--r-- | pandoc.cabal | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index a5f21dbb2..f648dce11 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -426,6 +426,8 @@ extra-source-files: test/pptx/*.pptx test/pptx/**/*.pptx test/pptx/**/*.native + test/pptx-reader/basic.pptx + test/pptx-reader/basic.native test/ipynb/*.native test/ipynb/*.in.native test/ipynb/*.out.native @@ -610,6 +612,7 @@ library Text.Pandoc.Readers.TikiWiki, Text.Pandoc.Readers.Txt2Tags, Text.Pandoc.Readers.Docx, + Text.Pandoc.Readers.Pptx, Text.Pandoc.Readers.ODT, Text.Pandoc.Readers.EPUB, Text.Pandoc.Readers.Muse, @@ -718,6 +721,11 @@ library Text.Pandoc.Readers.Docx.Util, Text.Pandoc.Readers.Docx.Symbols, Text.Pandoc.Readers.Docx.Fields, + Text.Pandoc.Readers.OOXML.Shared, + Text.Pandoc.Readers.Pptx.Parse, + Text.Pandoc.Readers.Pptx.Shapes, + Text.Pandoc.Readers.Pptx.Slides, + Text.Pandoc.Readers.Pptx.SmartArt, Text.Pandoc.Readers.HTML.Parsing, Text.Pandoc.Readers.HTML.Table, Text.Pandoc.Readers.HTML.TagCategories, @@ -854,6 +862,7 @@ test-suite test-pandoc Tests.Readers.RST Tests.Readers.RTF Tests.Readers.Docx + Tests.Readers.Pptx Tests.Readers.ODT Tests.Readers.Txt2Tags Tests.Readers.EPUB |
