Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-10-25 | Added INSTALL.md, incorporating INSTALL + installing page from website. | John MacFarlane | 1 | -1/+1 | |
2016-10-23 | Allow binary formats to be written to stdout unless tty output. | John MacFarlane | 1 | -0/+3 | |
Only works on posix. On Windows, pandoc works as before and requires an output file parameter for binary formats. Closes #2677. | |||||
2016-10-19 | Merge pull request #3158 from ickc/COPY-LICENSE | John MacFarlane | 1 | -1/+1 | |
Use the markdown version of COPYING from GNU | |||||
2016-10-19 | Download markdown version of the license from GNU and rename to `COPYING.md` | Kolen Cheung | 1 | -1/+1 | |
From https://www.gnu.org/licenses/old-licenses/gpl-2.0.md | |||||
2016-10-18 | Allow latest HUnit. | John MacFarlane | 1 | -1/+1 | |
2016-10-14 | Remove Tests.Arbitrary | Jesse Rosenthal | 1 | -1/+0 | |
Use exported Arbitrary instances from pandoc-types instead. | |||||
2016-10-13 | Allow http-client 0.4.30, which is the version in stackage lts. | John MacFarlane | 1 | -2/+2 | |
Previously we required 0.5. Remove CPP conditionals for earlier versions. | |||||
2016-10-13 | Bump required pandoc-types version to 1.17 | Albert Krewinkel | 1 | -5/+5 | |
2016-10-02 | Revert overhasty bounds change for pandoc-types. | John MacFarlane | 1 | -3/+3 | |
2016-10-02 | Use doctemplates 0.1.0.2. | John MacFarlane | 1 | -3/+3 | |
2016-10-02 | Moved template compiling/rendering code to a separate library. | John MacFarlane | 1 | -0/+1 | |
jgm/doctemplates. This allows the pandoc templating system to be used independently. | |||||
2016-09-23 | Bump to 1.17.3 | John MacFarlane | 1 | -1/+1 | |
2016-09-02 | Remove TagSoup compat | Jesse Rosenthal | 1 | -1/+0 | |
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. | |||||
2016-09-02 | Remove GHC 7.6 from list of tested versions | Albert Krewinkel | 1 | -1/+1 | |
GHC versions below 7.8 are no longer supported nor tested. | |||||
2016-09-02 | Bump base lower bound to 4.7 | Jesse Rosenthal | 1 | -1/+1 | |
We are dropping support for ghc < 7.8. | |||||
2016-09-02 | Bump base lower bound to 4.6 (ghc 7.6) | Jesse Rosenthal | 1 | -1/+1 | |
2016-09-02 | Change constraint on mtl. | Jesse Rosenthal | 1 | -1/+1 | |
2016-09-02 | Remove directory compat | Jesse Rosenthal | 1 | -2/+1 | |
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. | |||||
2016-09-02 | Remove Text.Pandoc.Compat.Except | Jesse Rosenthal | 1 | -1/+0 | |
2016-09-02 | Remove Compat.Monoid | Jesse Rosenthal | 1 | -1/+0 | |
This was only necessary for GHC versions with base below 4.5 (i.e., ghc < 7.4). | |||||
2016-08-29 | Org reader: extract meta parsing code to module | Albert Krewinkel | 1 | -0/+1 | |
Parsing of meta-data is well separable from other block parsing tasks. Moving into new module to get small files and clearly arranged code. | |||||
2016-08-20 | Allow aeson 1.0.*. | John MacFarlane | 1 | -2/+2 | |
2016-07-24 | Use texmath 0.8.6.5. Closes #3040. | John MacFarlane | 1 | -1/+1 | |
2016-07-20 | Rename README to MANUAL.txt | Albert Krewinkel | 1 | -2/+2 | |
2016-07-15 | Don't require haddock-library 1.4. | John MacFarlane | 1 | -1/+1 | |
Instead use CPP to work around version differences. | |||||
2016-07-14 | Require haddock-library >= 1.4. | John MacFarlane | 1 | -1/+1 | |
This has math support, DocMathInline and DocMathDisplay. | |||||
2016-07-14 | Version to 1.17.2. | John MacFarlane | 1 | -1/+1 | |
2016-07-11 | Allow QuickCheck 2.9. | John MacFarlane | 1 | -1/+1 | |
2016-07-04 | Depend on http-client 0.5, http-client-tls 0.3 | John MacFarlane | 1 | -2/+2 | |
2016-07-02 | Org reader: put export setting parser into module | Albert Krewinkel | 1 | -0/+1 | |
Export option parsing is distinct enough from general block parsing to justify putting it into a separate module. | |||||
2016-07-01 | Added ZimWiki format to documentation and cabal description. | Alex Ivkin | 1 | -5/+8 | |
2016-06-30 | Added Zim Wiki writer, template and tests. | Alex Ivkin | 1 | -0/+1 | |
2016-06-22 | Update texmath lower bound. | John MacFarlane | 1 | -1/+1 | |
2016-06-14 | Allow tagsoup 0.14 | Felix Yan | 1 | -1/+1 | |
Building with the new release went fine here, and it works correctly. | |||||
2016-06-04 | Removed -rtsopts from library stanza. | John MacFarlane | 1 | -2/+2 | |
It has no effect, and Hackage wouldn't accept the package. | |||||
2016-06-04 | Travis: test with ghc 8.0.1, remove testing with ghc 7.4. | John MacFarlane | 1 | -1/+1 | |
2016-06-03 | Require latest highlighting-kate. | John MacFarlane | 1 | -3/+3 | |
2016-06-02 | Org reader: undo code duplication | Albert Krewinkel | 1 | -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-25 | Org reader: extract blocks parser to module | Albert Krewinkel | 1 | -0/+1 | |
Block parsing code is moved to a separate module. This is part of the Org-mode reader cleanup effort. | |||||
2016-05-25 | Org reader: extract inline parser to module | Albert Krewinkel | 1 | -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-25 | Org reader: extract parsing function to module | Albert Krewinkel | 1 | -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-22 | Bumped upper-bounds to build with ghc 8. | John MacFarlane | 1 | -3/+3 | |
2016-05-12 | Revert "New method for checking for presence of tex program." | John MacFarlane | 1 | -2/+1 | |
This reverts commit 285bbf61cf2b21278792e48aee7c25fa0ee62faa. | |||||
2016-05-12 | Revert "Require process >= 1.2.1." | John MacFarlane | 1 | -3/+3 | |
This reverts commit 07a4320ba97cdd219e5cbb18f21dbbda00bc5543. | |||||
2016-05-12 | Require process >= 1.2.1. | John MacFarlane | 1 | -3/+3 | |
We need `createProcess_` to be exported. | |||||
2016-05-11 | Merge pull request #2912 from tarleb/org-export-settings | John MacFarlane | 1 | -0/+1 | |
Org reader: basic support for export settings | |||||
2016-05-11 | Org reader: move parser state into separate module | Albert Krewinkel | 1 | -0/+1 | |
The org reader code has become large and confusing. Extracting smaller parts into submodules should help to clean things up. | |||||
2016-05-09 | New method for checking for presence of tex program. | John MacFarlane | 1 | -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-01 | Added docbook5 templates, test files to pandoc.cabal. | John MacFarlane | 1 | -0/+3 | |
2016-05-01 | Bump version to 1.17.1. | John MacFarlane | 1 | -1/+1 | |
We need a minor version bump because of the addition of `writerDocbook5` to `WriterOptions`. |