summaryrefslogtreecommitdiff
path: root/pandoc.cabal
Commit message (Collapse)AuthorAge
...
| * New Free module, with pure versions of IO funcsJesse Rosenthal2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | Introduce a new module, Text.Pandoc.Free, with pure versions, based on the free monad, of numerous IO functions used in writers and readers. These functions are in a pure Monad (PandocAction). PandocAction takes as a parameter the type of IORefs in it. It can be aliased in individual writers and readers to avoid this parameter. Note that this means that at the moment a reader can only use one type of IORef. If possible, it would be nice to remove this limitation.
* | Updated copyright to include 2017.John MacFarlane2017-01-29
| |
* | Bump version to 1.19.2.John MacFarlane2017-01-29
| |
* | Use latest skylighting.John MacFarlane2017-01-29
| |
* | Fixed trypandoc.John MacFarlane2017-01-29
|/
* Use skylighting 0.1.1.John MacFarlane2017-01-19
| | | | Closes #3363.
* Allow vector 0.12.0.0.John MacFarlane2017-01-10
|
* Allow aeson 1.1.John MacFarlane2017-01-02
|
* Updates to use skylighting rather than highlighting-kate.John MacFarlane2016-12-23
| | | | | | | | So far this just reproduces capacity. Later we'll be able to add features like warning messages, dynamic loading of xml syntax definitions, and dynamic loading of themes.
* Allow directory 1.3. Closes #3325.John MacFarlane2016-12-23
|
* Version to 1.19.1John MacFarlane2016-12-10
|
* We no longer need the MathMLInHTML.js shim from 2004!John MacFarlane2016-12-09
|
* Use new module from texmath to lookup MS font codepoints.John MacFarlane2016-11-30
| | | | | | | | + Removed Text.Pandoc.Readers.Docx.Fonts + Moved its code to texmath; we now use (from texmath 0.9) Text.TeXMath.Unicode.Fonts + Use texmath 0.9 (currently from git). + Updated epub tests because texmath now handles more mathml.
* Version to 1.19.John MacFarlane2016-11-27
|
* Added weigh-pandoc for memory usage diagnostics.John MacFarlane2016-11-18
| | | | See #3169.
* Version to 1.18.John MacFarlane2016-10-26
|
* Added INSTALL.md, incorporating INSTALL + installing page from website.John MacFarlane2016-10-25
|
* Allow binary formats to be written to stdout unless tty output.John MacFarlane2016-10-23
| | | | | | | Only works on posix. On Windows, pandoc works as before and requires an output file parameter for binary formats. Closes #2677.
* Merge pull request #3158 from ickc/COPY-LICENSEJohn MacFarlane2016-10-19
|\ | | | | Use the markdown version of COPYING from GNU
| * Download markdown version of the license from GNU and rename to `COPYING.md`Kolen Cheung2016-10-19
| | | | | | | | From https://www.gnu.org/licenses/old-licenses/gpl-2.0.md
* | Allow latest HUnit.John MacFarlane2016-10-18
| |
* | Remove Tests.ArbitraryJesse Rosenthal2016-10-14
| | | | | | | | Use exported Arbitrary instances from pandoc-types instead.
* | Allow http-client 0.4.30, which is the version in stackage lts.John MacFarlane2016-10-13
| | | | | | | | | | Previously we required 0.5. Remove CPP conditionals for earlier versions.
* | Bump required pandoc-types version to 1.17Albert Krewinkel2016-10-13
|/
* Revert overhasty bounds change for pandoc-types.John MacFarlane2016-10-02
|
* Use doctemplates 0.1.0.2.John MacFarlane2016-10-02
|
* Moved template compiling/rendering code to a separate library.John MacFarlane2016-10-02
| | | | | | jgm/doctemplates. This allows the pandoc templating system to be used independently.
* 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.