diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-02-17 09:40:39 -0500 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-02-18 16:31:32 -0500 |
commit | 6c6ac9f22e746f4883412013f6369bf985831e91 (patch) | |
tree | 366bec799a4cf1f659a3ad4d24cd619e8cb0f103 /src/Text/Pandoc | |
parent | d9e179d6fd68b3da16cd0ccf22860ffe54184a2f (diff) | |
download | pandoc-6c6ac9f22e746f4883412013f6369bf985831e91.tar.gz |
Powerpoint writer: Move notes slides into data tree.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Class.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Class.hs b/src/Text/Pandoc/Class.hs index ae538046a..aa0379942 100644 --- a/src/Text/Pandoc/Class.hs +++ b/src/Text/Pandoc/Class.hs @@ -718,6 +718,14 @@ getDefaultReferencePptx = do , "ppt/tableStyles.xml" , "ppt/theme/theme1.xml" , "ppt/viewProps.xml" + -- These relate to notes slides. + , "ppt/notesMasters/notesMaster1.xml" + , "ppt/notesMasters/_rels/notesMaster1.xml.rels" + , "ppt/notesSlides/notesSlide1.xml" + , "ppt/notesSlides/_rels/notesSlide1.xml.rels" + , "ppt/notesSlides/notesSlide2.xml" + , "ppt/notesSlides/_rels/notesSlide2.xml.rels" + , "ppt/theme/theme2.xml" ] let toLazy = BL.fromChunks . (:[]) let pathToEntry path = do |