summaryrefslogtreecommitdiff
path: root/pandoc.cabal
Commit message (Collapse)AuthorAge
* Bump to 1.17.3John MacFarlane2016-09-23
|
* Remove TagSoup compatJesse Rosenthal2016-09-02
| | | | | | | We already lower-bound tagsoup at 0.13.7, which means we were always running the compatibility layer (it was conditional on min value 0.13). Better to just use `lookupEntity` from the library directly, and convert a string to a char if need be.
* Remove GHC 7.6 from list of tested versionsAlbert Krewinkel2016-09-02
| | | | GHC versions below 7.8 are no longer supported nor tested.
* Bump base lower bound to 4.7Jesse Rosenthal2016-09-02
| | | | We are dropping support for ghc < 7.8.
* Bump base lower bound to 4.6 (ghc 7.6)Jesse Rosenthal2016-09-02
|
* Change constraint on mtl.Jesse Rosenthal2016-09-02
|
* Remove directory compatJesse Rosenthal2016-09-02
| | | | | directory 1.1 depends on base 4.5 (ghc 7.4) which we are no longer supporting. So we don't have to use a compatibility layer for it.
* Remove Text.Pandoc.Compat.ExceptJesse Rosenthal2016-09-02
|
* Remove Compat.MonoidJesse Rosenthal2016-09-02
| | | | | This was only necessary for GHC versions with base below 4.5 (i.e., ghc < 7.4).
* Org reader: extract meta parsing code to moduleAlbert Krewinkel2016-08-29
| | | | | Parsing of meta-data is well separable from other block parsing tasks. Moving into new module to get small files and clearly arranged code.
* Allow aeson 1.0.*.John MacFarlane2016-08-20
|
* Use texmath 0.8.6.5. Closes #3040.John MacFarlane2016-07-24
|
* Rename README to MANUAL.txtAlbert Krewinkel2016-07-20
|
* Don't require haddock-library 1.4.John MacFarlane2016-07-15
| | | | Instead use CPP to work around version differences.
* Require haddock-library >= 1.4.John MacFarlane2016-07-14
| | | | This has math support, DocMathInline and DocMathDisplay.
* Version to 1.17.2.John MacFarlane2016-07-14
|
* Allow QuickCheck 2.9.John MacFarlane2016-07-11
|
* Depend on http-client 0.5, http-client-tls 0.3John MacFarlane2016-07-04
|
* Org reader: put export setting parser into moduleAlbert Krewinkel2016-07-02
| | | | | Export option parsing is distinct enough from general block parsing to justify putting it into a separate module.
* Added ZimWiki format to documentation and cabal description.Alex Ivkin2016-07-01
|
* Added Zim Wiki writer, template and tests.Alex Ivkin2016-06-30
|
* Update texmath lower bound.John MacFarlane2016-06-22
|
* Allow tagsoup 0.14Felix Yan2016-06-14
| | | Building with the new release went fine here, and it works correctly.
* Removed -rtsopts from library stanza.John MacFarlane2016-06-04
| | | | It has no effect, and Hackage wouldn't accept the package.
* Travis: test with ghc 8.0.1, remove testing with ghc 7.4.John MacFarlane2016-06-04
|
* Require latest highlighting-kate.John MacFarlane2016-06-03
|
* Org reader: undo code duplicationAlbert Krewinkel2016-06-02
| | | | | | | | 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.
* Org reader: extract blocks parser to moduleAlbert Krewinkel2016-05-25
| | | | | | Block parsing code is moved to a separate module. This is part of the Org-mode reader cleanup effort.
* Org reader: extract inline parser to moduleAlbert Krewinkel2016-05-25
| | | | | | | 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.
* Org reader: extract parsing function to moduleAlbert Krewinkel2016-05-25
| | | | | | | | | | | | 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.
* Bumped upper-bounds to build with ghc 8.John MacFarlane2016-05-22
|
* Revert "New method for checking for presence of tex program."John MacFarlane2016-05-12
| | | | This reverts commit 285bbf61cf2b21278792e48aee7c25fa0ee62faa.
* Revert "Require process >= 1.2.1."John MacFarlane2016-05-12
| | | | This reverts commit 07a4320ba97cdd219e5cbb18f21dbbda00bc5543.
* Require process >= 1.2.1.John MacFarlane2016-05-12
| | | | We need `createProcess_` to be exported.
* Merge pull request #2912 from tarleb/org-export-settingsJohn MacFarlane2016-05-11
|\ | | | | Org reader: basic support for export settings
| * Org reader: move parser state into separate moduleAlbert Krewinkel2016-05-11
| | | | | | | | | | The org reader code has become large and confusing. Extracting smaller parts into submodules should help to clean things up.
* | New method for checking for presence of tex program.John MacFarlane2016-05-09
|/ | | | | | Now instead of using `findExecutable`, which has limitations on Windows, we just do `progname --version` and see if it returns successfully. Closes #2903.
* Added docbook5 templates, test files to pandoc.cabal.John MacFarlane2016-05-01
|
* Bump version to 1.17.1.John MacFarlane2016-05-01
| | | | | We need a minor version bump because of the addition of `writerDocbook5` to `WriterOptions`.
* Require texmath 0.8.6.2.John MacFarlane2016-04-20
| | | | | | | Closes several texmath-related bugs: #2775, #2310, #2310. This fixes issues with sub/superscript positioning and matrix column alignment in docx.
* Allow data-default 0.6.0.John MacFarlane2016-04-18
|
* Use texmath >= 0.8.6.1.John MacFarlane2016-03-29
| | | | | This fixes behavior of roots, e.g. `\sqrt[3]{x}`. See #2824.
* Bump version to 1.17.0.3.John MacFarlane2016-03-24
|
* include .tei files in pandoc.cabalMauro Bieg2016-03-24
| | | closes #2811
* Updated copyright dates to include 2016.John MacFarlane2016-03-22
|
* Version bump to 1.17.0.2.John MacFarlane2016-03-22
|
* Version to 1.17.0.1.John MacFarlane2016-03-21
|
* Docx Reader: Get rid of Modifiable typeclass.Jesse Rosenthal2016-02-26
| | | | | | | | 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.
* Allow zip-archive 0.3.John MacFarlane2016-02-24
|
* Raise tagsoup lower bound to 0.13.7.John MacFarlane2016-02-22
| | | | | | This fixes entity-related problems. Closes #2734.