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 /test/pptx-reader | |
| 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 'test/pptx-reader')
| -rw-r--r-- | test/pptx-reader/basic.native | 149 | ||||
| -rw-r--r-- | test/pptx-reader/basic.pptx | bin | 0 -> 111674 bytes |
2 files changed, 149 insertions, 0 deletions
diff --git a/test/pptx-reader/basic.native b/test/pptx-reader/basic.native new file mode 100644 index 000000000..954cb9345 --- /dev/null +++ b/test/pptx-reader/basic.native @@ -0,0 +1,149 @@ +[ Header 2 ( "slide-1" , [] , [] ) [ Str "LLMs" ] +, BulletList + [ [ Plain + [ Str + "Provider \61664 Available LLMs \8211 who manages? How?" + ] + ] + , [ Plain + [ Str + "EW maintained list of \8220approved\8221 LLMs for Universal workers" + ] + ] + , [ Plain + [ Str + "Rebuilding of UWs to the \8220Newgen\8221 thing completely" + ] + ] + , [ Plain [ Str "Streaming support" ] ] + , [ Plain [ Str "Multimodal (voice streaming) models?" ] ] + ] +, Header + 2 + ( "slide-2" , [] , [] ) + [ Str "Everworker venn diagram" ] +, Para [ Str "SKILLS" ] +, Para [ Str "" ] +, Para [ Str "Specialized Workers / Workflows:" ] +, Para [ Str "" ] +, Para [ Str "n8n, UI Path, " ] +, Para [ Str "other RPA" ] +, Para [ Str "BRAINS" ] +, Para [ Str "" ] +, Para [ Str "Universal Workers / AI Agents:" ] +, Para [ Str "" ] +, Para [ Str "openai , anthropic," ] +, Para [ Str "Crew AI, other " ] +, Para [ Str "\8220AI natives\8221" ] +, Para [ Str "KNOWLEDGE " ] +, Para [ Str "" ] +, Para [ Str "Data / " ] +, Para [ Str "RAG Pipelines" ] +, Para [ Str "" ] +, Para + [ Str "Vector DBs, specialized data prep vendors, \8230" ] +, Para [ Str "glean" ] +, Para [ Str "EW" ] +, Header 2 ( "slide-3" , [] , [] ) [ Str "Table" ] +, Table + ( "" , [] , [] ) + (Caption Nothing []) + [ ( AlignDefault , ColWidthDefault ) + , ( AlignDefault , ColWidthDefault ) + , ( AlignDefault , ColWidthDefault ) + ] + (TableHead + ( "" , [] , [] ) + [ Row + ( "" , [] , [] ) + [ Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Col1" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Col2" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Col3" ] ] + ] + ]) + [ TableBody + ( "" , [] , [] ) + (RowHeadColumns 0) + [] + [ Row + ( "" , [] , [] ) + [ Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Name" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Anton" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Antich" ] ] + ] + , Row + ( "" , [] , [] ) + [ Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "Age" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "23" ] ] + , Cell + ( "" , [] , [] ) + AlignDefault + (RowSpan 1) + (ColSpan 1) + [ Plain [ Str "years" ] ] + ] + ] + ] + (TableFoot ( "" , [] , [] ) []) +, Para + [ Image + ( "" , [] , [] ) [] ( "ppt/media/image1.png" , "Picture 6" ) + ] +, Header 2 ( "slide-4" , [] , [] ) [ Str "Smart Art" ] +, Div + ( "" + , [ "smartart" , "chevron2" ] + , [ ( "layout" , "chevron2" ) ] + ) + [ Para [ Strong [ Str "First" ] ] + , BulletList + [ [ Plain [ Str "another" ] ] + , [ Plain [ Str "subtitle" ] ] + ] + , Para [ Strong [ Str "Second" ] ] + , BulletList + [ [ Plain [ Str "and yet again" ] ] + , [ Plain [ Str "yet more" ] ] + ] + ] +] diff --git a/test/pptx-reader/basic.pptx b/test/pptx-reader/basic.pptx Binary files differnew file mode 100644 index 000000000..44caef9c3 --- /dev/null +++ b/test/pptx-reader/basic.pptx |
