From 7f4668d87185929f75e5d3852c13ef2a5430b0d9 Mon Sep 17 00:00:00 2001 From: Jesse Rosenthal Date: Sat, 14 Jun 2014 10:02:52 -0400 Subject: Add files to cabal. Note there is a build warning for unused `makeImagesSelfContained` function, since there isn't yet a command-line-option to make use of it. --- pandoc.cabal | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pandoc.cabal') diff --git a/pandoc.cabal b/pandoc.cabal index be7d4977f..db76017b6 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -275,6 +275,7 @@ Library Text.Pandoc.Readers.Textile, Text.Pandoc.Readers.Native, Text.Pandoc.Readers.Haddock, + Text.Pandoc.Readers.DocX, Text.Pandoc.Writers.Native, Text.Pandoc.Writers.Docbook, Text.Pandoc.Writers.OPML, @@ -305,6 +306,8 @@ Library Text.Pandoc.Process Other-Modules: Text.Pandoc.Readers.Haddock.Lex, Text.Pandoc.Readers.Haddock.Parse, + Text.Pandoc.Readers.DocX.Lists, + Text.Pandoc.Readers.DocX.Parse, Text.Pandoc.Writers.Shared, Text.Pandoc.Asciify, Text.Pandoc.MIME, -- cgit v1.2.3 From cfd5290fc5fb131a763ae3f56b1dd1c4bcef731d Mon Sep 17 00:00:00 2001 From: Jesse Rosenthal Date: Sun, 15 Jun 2014 14:59:37 -0400 Subject: Reference new DocX tests in cabal file. --- pandoc.cabal | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'pandoc.cabal') diff --git a/pandoc.cabal b/pandoc.cabal index db76017b6..00fa4e06a 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -184,7 +184,25 @@ Extra-Source-Files: tests/fb2.math.markdown, tests/fb2.math.fb2, tests/fb2.test-small.png, - tests/fb2.test.jpg + tests/fb2.test.jpg, + tests/docx.block_quotes.docx, + tests/docx.block_quotes_parse_indent.native, + tests/docx.headers.docx, + tests/docx.headers.native, + tests/docx.image.docx, + tests/docx.image_no_embed.native, + tests/docx.inline_formatting.docx, + tests/docx.inline_formatting.native, + tests/docx.links.docx, + tests/docx.links.native, + tests/docx.lists.docx, + tests/docx.lists.native, + tests/docx.notes.docx, + tests/docx.notes.native, + tests/docx.tables.docx, + tests/docx.tables.native, + tests/docx.unicode.docx, + tests/docx.unicode.native Extra-Tmp-Files: man/man1/pandoc.1, man/man5/pandoc_markdown.5 @@ -393,6 +411,7 @@ Test-Suite test-pandoc Tests.Readers.Markdown Tests.Readers.Org Tests.Readers.RST + Tests.Readers.DocX Tests.Writers.Native Tests.Writers.ConTeXt Tests.Writers.HTML -- cgit v1.2.3