Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-10-13 | Update benchmarks for ghc 8.6.1. | John MacFarlane | 1 | -0/+1 | |
2018-10-09 | Added docx/docPropos/custom.xml to cabal data-files. | John MacFarlane | 1 | -0/+1 | |
2018-10-08 | Require skylighting 0.7.4. | John MacFarlane | 1 | -1/+1 | |
Closes #4920. | |||||
2018-10-04 | Version to 2.4. | John MacFarlane | 1 | -1/+1 | |
We need a major API version bump because of the removed function from T.P.Writers.Shared. | |||||
2018-10-02 | Removed Text.Pandoc.Groff. | John MacFarlane | 1 | -1/+0 | |
Moved groffEscape function to Text.Pandoc.Writers.Shared. [API change, since T.P.W.S is exported.] | |||||
2018-10-01 | Version to 2.3.2. | John MacFarlane | 1 | -1/+1 | |
2018-10-01 | Moved babelLangToBCP, polyglossiaLangToBCP to new module... | John MacFarlane | 1 | -0/+1 | |
Text.Pandoc.Readers.LaTeX.Lang (unexported). | |||||
2018-10-01 | Lua filters: report traceback when an error occurs | Albert Krewinkel | 1 | -1/+1 | |
A proper Lua traceback is added if either loading of a file or execution of a filter function fails. This should be of help to authors of Lua filters who need to debug their code. | |||||
2018-09-30 | Implement `--ascii` (`writerPreferAscii`) in writers, not App. | John MacFarlane | 1 | -0/+1 | |
Now the `write*` functions for Docbook, HTML, ICML, JATS, Man, Ms, OPML are sensitive to `writerPreferAscii`. Previously the to-ascii translation was done in Text.Pandoc.App, and thus not available to those using the writer functions directly. In addition, the LaTeX writer is now sensitive to `writerPreferAscii` and to `--ascii`. 100% ASCII output can't be guaranteed, but the writer will use commands like `\"{a}` and `\l` whenever possible, to avoid emiting a non-ASCII character. A new unexported module, Text.Pandoc.Groff, has been added to store functions used in the different groff-based writers. | |||||
2018-09-30 | pandoc.cabal: make base lower bound 4.8. | John MacFarlane | 1 | -5/+5 | |
We no longer support ghc 7.8, but this wasn't reflected in the base versions. | |||||
2018-09-30 | LaTeX reader: simplified accent code using unicode-transforms. | John MacFarlane | 1 | -0/+1 | |
New dependency on unicode-transforms package for normalization. | |||||
2018-09-28 | Added Text.Pandoc.Readers.LaTeX.Parsing (unexported). | John MacFarlane | 1 | -0/+1 | |
This collects some of the general-purpose code from the LaTeX reader, with the aim of making the module smaller. (We've been having out-of-memory issues compiling this module on CI.) | |||||
2018-09-27 | Version to 2.3.1. | John MacFarlane | 1 | -1/+1 | |
2018-09-24 | Use hslua v1.0.0 | Albert Krewinkel | 1 | -3/+3 | |
2018-09-15 | add test for --metadata-file | mb21 | 1 | -0/+1 | |
2018-08-14 | Bump version to 2.3, because of breaking API change to Macro. | John MacFarlane | 1 | -1/+1 | |
2018-08-07 | Bump to 2.2.3.2, update man page, changelog. | John MacFarlane | 1 | -1/+1 | |
2018-08-06 | Bump to 2.2.3.1, update man page and changelog. | John MacFarlane | 1 | -1/+1 | |
2018-08-05 | Bump to 2.2.3, update changelog and man page. | John MacFarlane | 1 | -1/+1 | |
2018-07-18 | Bump version to 2.2.2.1. | John MacFarlane | 1 | -1/+1 | |
2018-07-15 | Minor cabal file changes. | John MacFarlane | 1 | -2/+2 | |
Requested by 'stack upload.' Different format for minimum cabal version. Use of autogen-modules. | |||||
2018-07-15 | Bump to 2.2.2 and update changelog. | John MacFarlane | 1 | -1/+1 | |
2018-07-13 | Travis: Use system ghc. And use ghc-8.4.3 instead of 8.4.2. | John MacFarlane | 1 | -1/+1 | |
2018-07-13 | Bump upper bound for JuicyPixels. | John MacFarlane | 1 | -1/+1 | |
2018-07-12 | Exclude foundaiton 0.0.21 for ghc 7.10. | John MacFarlane | 1 | -3/+4 | |
2018-07-12 | Attempt to fix latest ghc 7.10 build failure. | John MacFarlane | 1 | -1/+4 | |
2018-07-02 | Allow criterion 1.5. | John MacFarlane | 1 | -1/+1 | |
2018-06-30 | Use ghc 8.4.2 in travis and tested-with. | John MacFarlane | 1 | -1/+1 | |
8.4.1 shipped with the wrong version of mtl, which didn't match its documented API. | |||||
2018-06-29 | Use HsYAML instead of yaml for translations, YAML metadata. | John MacFarlane | 1 | -6/+3 | |
yaml wraps a C library; HsYAML is pure Haskell. Closes #4747. Advances #4535. | |||||
2018-06-29 | Require yaml < 0.8.31 for ghc < 8.0.2. | John MacFarlane | 1 | -2/+4 | |
The 0.8.31 release of yaml adds a constraint to ghc versions 8.0.2 and greater. | |||||
2018-06-28 | Remove network-uri flag and use 'Network.Socket'. | John MacFarlane | 1 | -8/+2 | |
This removes a compiler warning. There is no need for the old network-uri flag, since network 2.6 was released in 2014. | |||||
2018-06-24 | pandoc.cabal: fix lower yaml bound up to 0.8.11 (#4727) | Sergei Trofimovich | 1 | -1/+1 | |
`prettyPrintParseException` was added to yaml-0.8.11. Reported-by: Tom Gillespie Bug: https://github.com/jgm/pandoc/issues/4726 Bug: https://github.com/gentoo-haskell/gentoo-haskell/issues/725 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> | |||||
2018-06-23 | Raise lower bound for yaml library. | John MacFarlane | 1 | -1/+1 | |
Closes #4726. | |||||
2018-06-11 | Use latest pandoc-types (1.17.5). | John MacFarlane | 1 | -2/+2 | |
2018-06-10 | Allow aeson-1.4. | John MacFarlane | 1 | -1/+1 | |
2018-06-09 | Use skylighting 0.7.2. Adjust tests. | John MacFarlane | 1 | -1/+1 | |
This should fix commercialhaskell/stackage#3719, once a new release is made. | |||||
2018-06-03 | Allow tasty 1.1 (#4685) | Felix Yan | 1 | -1/+1 | |
All tests pass with tasty 1.1.0.1 here. | |||||
2018-06-01 | LaTeX reader: handle includes without surrounding blanklines. | John MacFarlane | 1 | -0/+1 | |
In addition, `\input` can now be used in an inline context, e.g. to provide part of a paragraph, as it can in LaTeX. Closes #4553. | |||||
2018-05-30 | Add version bound in custom-setup for Cabal. | John MacFarlane | 1 | -1/+1 | |
2018-05-30 | Require cabal-version >= 2.0. This is needed for haddock-library. | John MacFarlane | 1 | -1/+1 | |
2018-05-30 | Revert "ALlow compilation with haddock-library 1.4 and above." | John MacFarlane | 1 | -1/+1 | |
This reverts commit 50c71b5bc5db797ac46550ed54e91196269716e3. This was a bad idea, since tests depend on recent haddock-library. We'd be able to build but fail tests. | |||||
2018-05-30 | ALlow compilation with haddock-library 1.4 and above. | John MacFarlane | 1 | -1/+1 | |
haddock-library-1.6 requires Cabal >= 2.0. This change allows systems with older Cabal versions to build pandoc. | |||||
2018-05-20 | Use haddock-library 1.6.0. | John MacFarlane | 1 | -1/+1 | |
2018-05-14 | Require texmath >= 0.11. | John MacFarlane | 1 | -1/+1 | |
Although pandoc compiles with 0.10, the tests assume texmath 0.11. Closes #4651. | |||||
2018-05-10 | Bump version to 2.2.1. | John MacFarlane | 1 | -1/+1 | |
2018-05-10 | Use texmath-0.11. | John MacFarlane | 1 | -1/+1 | |
2018-04-26 | Document FB2 reader. | John MacFarlane | 1 | -5/+5 | |
2018-04-26 | Add FB2 reader (#4539) | Alexander | 1 | -0/+4 | |
2018-04-25 | Removed deprecated ancient HTML math methods. | John MacFarlane | 1 | -3/+1 | |
Removed `--latexmathml`, `--gladtex`, `--mimetex`, `--jsmath`, `-m`, `--asciimathml` options. Removed `JsMath`, `LaTeXMathML`, and `GladTeX` constructors from `Text.Pandoc.Options.HTMLMathMethod` [API change]. Removed unneeded data file LaTeXMathML.js and updated tests. Bumped version to 2.2. | |||||
2018-04-24 | Powerpoint writer: Remove docProps/thumbnail.jpeg in data dir. | Jesse Rosenthal | 1 | -1/+0 | |
This file wasn't used in the production of documents. It's supposed to be a thumbnail of the current document, and we can't actually produce that ourselves. It turns out that the file contains a nonfree ICC color calibration file, so the best thing to do would be to remove it altogether. Fixes: #4588 |