aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
AgeCommit message (Collapse)AuthorFilesLines
2014-12-26Version bump to 1.13.3.John MacFarlane1-1/+1
2014-12-19Require latest highlighting-kate and texmath.John MacFarlane1-4/+4
2014-12-19Added old-locale flag.John MacFarlane1-3/+10
This will ease transition to time 1.5. However, currently we can't build with time 1.5 because of dependencies.
2014-12-19Added Text.Pandoc.Compat.Locale to assist with transition to time 1.5.John MacFarlane1-2/+3
2014-12-08Link the test suite using -threadedBryan O'Sullivan1-1/+1
This allows the test suite to be run using "+RTS -N". Doing so improves the performance of the test suite on my quad-core Mac laptop as follows: Before: 8.2 seconds After: 2.5 seconds
2014-12-08Merge pull request #1746 from shelf/dw-ext-imagesMatthew Pickering1-0/+2
DokuWiki writer: fix external images
2014-12-06Update pandoc.cabal, Bumping JuicyPixels upper boundVincent1-1/+1
2014-11-09DokuWiki writer: add external_images testTimothy Humphries1-0/+2
Add test for #1739.
2014-10-31Fixed README and pandoc.cabal for TWiki reader.John MacFarlane1-8/+9
2014-10-30TWiki Reader: update documentationAlexander Sulfrian1-2/+2
2014-10-30TWiki Reader: add basic syntax testAlexander Sulfrian1-0/+1
2014-10-30TWiki Reader: add new new twiki readerAlexander Sulfrian1-0/+1
2014-10-20Version bump to 1.13.2.John MacFarlane1-1/+1
This is needed because of the addition of KaTeX to HTMLMathMethod.
2014-09-28Adde network dependency under network-uri flag in test section.John MacFarlane1-1/+1
2014-09-22Bump text, random, http-client upper boundsRyanGlScott1-5/+5
2014-08-30Version bump to 1.13.1.John MacFarlane1-1/+1
2014-08-30Added new dokuwiki multiblock table tests to pandoc.cabal.John MacFarlane1-0/+2
2014-08-24Capitalized Build-Depends for consistency.John MacFarlane1-1/+1
2014-08-24Fix build dependencies for the trypandoc flag.Gabor Pali1-2/+2
Build dependencies of the trypandoc executable are required, regardless of the trypandoc flag was set to either True or False. Correct package description to make them truly optional.
2014-08-20Added network-uri flag.John MacFarlane1-2/+12
This addresses the split of network and network-uri.
2014-08-17Added tables.dokuwiki and tables.icml to extra-source-files.John MacFarlane1-0/+2
2014-08-17Added trypandoc flag to build trypandoc cgi executable.John MacFarlane1-0/+18
Supporting files are in trypandoc/.
2014-08-17Bump version to 1.13.0.1.John MacFarlane1-1/+1
2014-08-13Added dokuwiki template to pandoc.cabal.John MacFarlane1-0/+1
2014-08-13Included Tests.Writers.Docbook in test modules.John MacFarlane1-0/+1
2014-08-13Added make-pandoc-man-pages flagJohn MacFarlane1-0/+8
Previously we built this by default, but most users won't need to build it, since we include built man pages with the package.
2014-08-13Added Makefile to rebuild man pages.John MacFarlane1-2/+1
This should only be needed by developers.
2014-08-13Revised tests directory.John MacFarlane1-141/+117
Renamed some tests, introducing subsidiary directories for fb2, docx, epub. Cleaned up tests in cabal file. Combined dokuwiki-writer and dokuwiki_inline_formatting tests.
2014-08-13Removed special testHook from Setup.John MacFarlane1-0/+1
This was just too fragile and dependent on a changing Cabal API (see #1526). Instead of passing the bulid directory to the test program, we now let the test program find itself (using executable-path) and then find the pandoc executable relative to itself.
2014-08-12Merge pull request #1527 from mpickering/juicypixelsJohn MacFarlane1-1/+2
Attempts to convert gif, tiff and bmp to png in pdf writer
2014-08-13PDF Writer: Attempts to convert images to pdf renderable formatsMatthew Pickering1-1/+2
Now depends on the JuicyPixels library. Will attempt to convert an image (gif, tiff, bmp) to png when converting to pdf.
2014-08-13EPUB Tests: Added wasteland testMatthew Pickering1-2/+1
This epub contains many epub:type elements including footnotes and titlepage.
2014-08-11Docx: Add dropcap tests.Jesse Rosenthal1-0/+1
2014-08-11Require zip-archive 0.2.3.4, with normalized path comparison.John MacFarlane1-2/+2
2014-08-10Improved EPUB TestsMatthew Pickering1-0/+1
Rewrote features test to remove all unimplemented features. There are now all three examples of where an image can be included in the test. 1. Cover image 2. As a spine elemnt 3. In the document Tests have also been added to make sure that the mediabag contains all these images after processing.
2014-08-10Removed OMath module, depend on texmath >= 0.8.John MacFarlane1-2/+1
2014-08-09Added Text.Pandoc.Readers.Docx.FontsMatthew Pickering1-0/+1
2014-08-07EPUB test renaming.John MacFarlane1-0/+2
Renamed epub test files so they're identified more clearly as epub: features.{epub,native} -> epub.features.{epub,native}, and similarly with formatting.{epub,native}. Added epub test files to cabal file, so they'll be included in the tarball.
2014-08-07Merge pull request #1494 from jkr/math-moduleJohn MacFarlane1-0/+1
Math module
2014-08-07Docx reader: Test inline image code.Jesse Rosenthal1-0/+1
2014-08-07Docx reader: Split math out into math module.Jesse Rosenthal1-0/+1
Could use some cleanup, but this is the first step for getting an OMML reader into TeXMath.
2014-08-06Remove now-unnecessary TexCharJesse Rosenthal1-1/+0
TeXMath does the work now.
2014-08-04Merge branch 'epubend' of https://github.com/mpickering/pandoc into ↵John MacFarlane1-5/+7
mpickering-epubend Conflicts: pandoc.cabal
2014-08-03Add plain writer testing module to .cabal file.Artyom Kazak1-0/+1
2014-08-02Bump aeson upper bound.John MacFarlane1-2/+2
2014-07-31EPUB Reader: Integrated into programMatthew Pickering1-2/+4
2014-07-31Docx tests: rewrite mediabag tests.Jesse Rosenthal1-2/+2
This will allow us to test the whole mediabag (making sure, for example, that images are added with the correct keys) instead of just individual extracted images. We compare each entry in the media bag to an image extracted on the fly from the docx. As a result, we only need one file to test with. The image in the current tests was also replaced with a smaller one.
2014-07-31New module, Text.Pandoc.MediaBag.John MacFarlane1-0/+1
Moved `MediaBag` definition and functions from Shared: `lookupMedia`, `mediaDirectory`, `insertMedia`, `extractMediaBag`. Removed `emptyMediaBag`; use `mempty` instead, since `MediaBag` is a Monoid.
2014-07-30Docx tests: Added media test comparison function.Jesse Rosenthal1-0/+1
Also tell pandoc.cabal that we'll be needing base64, since we want to compare strings here.
2014-07-29Add and update docx tests in pandoc.cabal.Jesse Rosenthal1-0/+12