aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
AgeCommit message (Collapse)AuthorFilesLines
2016-07-01Added ZimWiki format to documentation and cabal description.Alex Ivkin1-5/+8
2016-06-30Added Zim Wiki writer, template and tests.Alex Ivkin1-0/+1
2016-06-22Update texmath lower bound.John MacFarlane1-1/+1
2016-06-14Allow tagsoup 0.14Felix Yan1-1/+1
Building with the new release went fine here, and it works correctly.
2016-06-04Removed -rtsopts from library stanza.John MacFarlane1-2/+2
It has no effect, and Hackage wouldn't accept the package.
2016-06-04Travis: test with ghc 8.0.1, remove testing with ghc 7.4.John MacFarlane1-1/+1
2016-06-03Require latest highlighting-kate.John MacFarlane1-3/+3
2016-06-02Org reader: undo code duplicationAlbert Krewinkel1-0/+1
Some code was duplicated (copy-pasted) or placed in an inappropriate module during the modularization refactoring. Those functions are moved into a `Shared` module, as was originally intended but forgotten. Better documentation of the respective functions is a positive side-effect.
2016-05-25Org reader: extract blocks parser to moduleAlbert Krewinkel1-0/+1
Block parsing code is moved to a separate module. This is part of the Org-mode reader cleanup effort.
2016-05-25Org reader: extract inline parser to moduleAlbert Krewinkel1-0/+2
Inline parsing code is moved to a separate module. Parsers for block starts are extracted as well, as those are used in the `endline` parser. This is part of the Org-mode reader cleanup effort.
2016-05-25Org reader: extract parsing function to moduleAlbert Krewinkel1-0/+1
The Org-mode reader uses many functions defined in the `Text.Pandoc.Parsing` utility module. Some of the functions are overwritten with versions adapted to Org-mode idiosyncrasies. These special functions, as well as the normal Pandoc versions, are combined in a single module to increase the ease of use. This leads to decoupling of Org-mode and Pandoc and hence to slightly cleaner code. The downside is code-bloat due to repeated import/export statements.
2016-05-22Bumped upper-bounds to build with ghc 8.John MacFarlane1-3/+3
2016-05-12Revert "New method for checking for presence of tex program."John MacFarlane1-2/+1
This reverts commit 285bbf61cf2b21278792e48aee7c25fa0ee62faa.
2016-05-12Revert "Require process >= 1.2.1."John MacFarlane1-3/+3
This reverts commit 07a4320ba97cdd219e5cbb18f21dbbda00bc5543.
2016-05-12Require process >= 1.2.1.John MacFarlane1-3/+3
We need `createProcess_` to be exported.
2016-05-11Merge pull request #2912 from tarleb/org-export-settingsJohn MacFarlane1-0/+1
Org reader: basic support for export settings
2016-05-11Org reader: move parser state into separate moduleAlbert Krewinkel1-0/+1
The org reader code has become large and confusing. Extracting smaller parts into submodules should help to clean things up.
2016-05-09New method for checking for presence of tex program.John MacFarlane1-1/+2
Now instead of using `findExecutable`, which has limitations on Windows, we just do `progname --version` and see if it returns successfully. Closes #2903.
2016-05-01Added docbook5 templates, test files to pandoc.cabal.John MacFarlane1-0/+3
2016-05-01Bump version to 1.17.1.John MacFarlane1-1/+1
We need a minor version bump because of the addition of `writerDocbook5` to `WriterOptions`.
2016-04-20Require texmath 0.8.6.2.John MacFarlane1-1/+1
Closes several texmath-related bugs: #2775, #2310, #2310. This fixes issues with sub/superscript positioning and matrix column alignment in docx.
2016-04-18Allow data-default 0.6.0.John MacFarlane1-1/+1
2016-03-29Use texmath >= 0.8.6.1.John MacFarlane1-1/+1
This fixes behavior of roots, e.g. `\sqrt[3]{x}`. See #2824.
2016-03-24Bump version to 1.17.0.3.John MacFarlane1-1/+1
2016-03-24include .tei files in pandoc.cabalMauro Bieg1-0/+2
closes #2811
2016-03-22Updated copyright dates to include 2016.John MacFarlane1-1/+1
2016-03-22Version bump to 1.17.0.2.John MacFarlane1-1/+1
2016-03-21Version to 1.17.0.1.John MacFarlane1-1/+1
2016-02-26Docx Reader: Get rid of Modifiable typeclass.Jesse Rosenthal1-1/+1
The docx reader used to use a Modifiable typeclass to combine both Blocks and Inlines. But all the work was in the inlines. So most of the generality was wasted, at the expense of making the code harder to understand. This gets rid of the generality, and adds functions for Blocks and Inlines. It should be a bit easier to work with going forward.
2016-02-24Allow zip-archive 0.3.John MacFarlane1-2/+2
2016-02-22Raise tagsoup lower bound to 0.13.7.John MacFarlane1-1/+1
This fixes entity-related problems. Closes #2734.
2016-02-09Allow aeson 0.11.John MacFarlane1-2/+2
2016-01-22Bump version to 1.17.John MacFarlane1-1/+1
API change in type of Text.Pandoc.Shared.uniqueIdent.
2016-01-21Added TEI to description and default.tei to data files.John MacFarlane1-2/+3
2016-01-19Add TEI Writer.csforste1-0/+2
2016-01-12Version to 1.16.0.2, updated changelog.John MacFarlane1-1/+1
2016-01-11Depend on deepseq rather than deepseq-generics.John MacFarlane1-1/+1
See fpco/stackage#1096.
2016-01-09Version bump to 1.16.0.1John MacFarlane1-1/+1
2016-01-06Revert "Make file globbing work on windows."John MacFarlane1-2/+1
This reverts commit 363ecfebc32c6fe15d81634422e8607847f588fb.
2016-01-06Make file globbing work on windows.John MacFarlane1-1/+2
Windows cmd doesn't expand wildcards; the application has to do this. So on windows we use 'glob' to expand.
2016-01-05Go back to testing with ghc 7.10.2.John MacFarlane1-1/+1
Avoids the dreaded "the version of cabal being used has changed" error. https://www.reddit.com/r/haskell/comments/3f4bgr/the_version_of_cabal_being_used_has_changed/
2016-01-05Updated .travis.yml, added ghc 7.10.3 to tested-with.John MacFarlane1-1/+1
2016-01-01Allow process 1.4John MacFarlane1-2/+2
2016-01-01Allow binary 0.8John MacFarlane1-1/+1
2016-01-01Relax version bound on HTTP.John MacFarlane1-2/+2
2015-12-29Use cmark 0.5.John MacFarlane1-1/+1
Closes #2605.
2015-12-14Removed "compatibility mode" when called as hsmarkdown.John MacFarlane1-16/+10
2015-12-12Update to use latest releases of highlighting-kate and texmath.John MacFarlane1-4/+4
2015-11-19Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into ↵John MacFarlane1-4/+4
mb21-new-image-attributes * Bumped version to 1.16. * Added Attr field to Link and Image. * Added `common_link_attributes` extension. * Updated readers for link attributes. * Updated writers for link attributes. * Updated tests * Updated stack.yaml to build against unreleased versions of pandoc-types and texmath. * Fixed various compiler warnings. Closes #261. TODO: * Relative (percentage) image widths in docx writer. * ODT/OpenDocument writer (untested, same issue about percentage widths). * Update pandoc-citeproc.
2015-11-16Bump version to 1.15.2.1. Updated changelog.John MacFarlane1-1/+1