aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
AgeCommit message (Collapse)AuthorFilesLines
2020-09-21Bump to 2.11.John MacFarlane1-1/+1
2020-09-21pandoc.cabal: sort build depends alphabetically (#6691)Albert Krewinkel1-96/+98
2020-09-20Lua filters: add SimpleTable for backwards compatibility (#6575)Albert Krewinkel1-0/+1
A new type `SimpleTable` is made available to Lua filters. It is similar to the `Table` type in pandoc versions before 2.10; conversion functions from and to the new Table type are provided. Old filters using tables now require minimal changes and can use, e.g., if PANDOC_VERSION > {2,10,1} then pandoc.Table = pandoc.SimpleTable end and function Table (tbl) tbl = pandoc.utils.to_simple_table(tbl) … return pandoc.utils.from_simple_table(tbl) end to work with the current pandoc version.
2020-09-20CI: bump tested GHC versions to 8.8.4 and 8.10.2Albert Krewinkel1-1/+1
Besides being newer, GHC version 8.10.2 comes preinstalled on GitHub Actions environments; using it slightly speeds up CI tests.
2020-09-20pandoc.cabal: allow hslua 1.2 againAlbert Krewinkel1-2/+2
Sporadic test failures also happen with hslua-1.1.*, so there is no need to exclude the newer version. This reverts commit 315b5a4836b477f2c176c7800e6c995ecb831194.
2020-09-19Use released pandoc-types 1.22.John MacFarlane1-2/+2
2020-09-12HTML writer: render table footers if presentAlbert Krewinkel1-0/+3
Part of: #6314
2020-09-12[API change] Rename Writers.Tables and its contents (#6679)Christian Despres1-2/+2
Writers.Tables is now Writers.AnnotatedTable. All of the types and functions in it have had the "Ann" removed from them. Now it is expected that the module be imported qualified.
2020-09-11pandoc.cabal: disallow hslua 1.2Albert Krewinkel1-2/+2
See #6674
2020-09-05Add Writers.Tables helper functions and types, add tests for those (#6655)Christian Despres1-0/+2
Add Writers.Tables helper functions and types, add tests for those The Writers.Tables module contains an AnnTable type that is a pandoc Table with added inferred information that should be enough for writers (in particular the HTML writer) to operate on without having to lay out the table themselves. The toAnnTable and fromAnnTable functions in that module convert between AnnTable and Table. In addition to producing an AnnTable with coherent and well-formed annotations, the toAnnTable function also normalizes its input Table like the table builder does. Various tests ensure that toAnnTable normalizes tables exactly like the table builder, and that its annotations are coherent.
2020-09-02LaTeX reader: Factored out siunitx stuff into separate module.John MacFarlane1-0/+1
2020-08-30Use skylighting 0.10.John MacFarlane1-2/+2
2020-08-15Relax version constraints for hslua, hslua-module-textAlbert Krewinkel1-3/+3
Allow `hslua-1.2.*` and `hslua-module-text-0.3.*`.
2020-08-05Use commonmark >= 0.1.0.2. Closes #6589.John MacFarlane1-1/+1
2020-08-05Remove duplicated exceptions (#6591)Felix Yan1-1/+0
2020-07-31Use skylighting 0.9.John MacFarlane1-2/+2
2020-07-23Update changelog and bump to 2.10.1.John MacFarlane1-1/+1
2020-07-23Use commonmark-0.1.0.1.John MacFarlane1-1/+1
Partially addresses #6556.
2020-07-21RST reader: fix csv tables with multiline cells.John MacFarlane1-0/+1
Closes #6549.
2020-07-19Use commonmark-extensions, commonmark-pandoc 0.2.John MacFarlane1-3/+3
2020-07-19Remove use of cmark-gfm for commonmark/gfm rendering.John MacFarlane1-1/+0
Instead rely on the markdown writer with appropriate extensions. Export writeCommonMark variant from Markdown writer. This changes a few small things in rendering markdown, e.g. w/r/t requiring backslashes before spaces inside super/subscripts.
2020-07-19Use commonmark-hs to parse commonmark/gfm...John MacFarlane1-1/+4
...instead of cmark-gfm (a wrapper around a C library). We can now support many more pandoc extensions for commonmark and gfm. Add fenced_code_attributes to gfm/commonmark extensions.
2020-07-19CI: Drop testing on ghc 8.0.2.John MacFarlane1-1/+1
2020-07-08Escape starting periods in ms writer code blocksMichael Hoffmann1-0/+1
If a line of ms code block output starts with a period (.), it should be prepended by '\&' so that it is not interpreted as a roff command. Fixes #6505
2020-06-22Bump version to 2.10. Update tested-with.John MacFarlane1-2/+3
We need a major version bump because of the new pandoc-types.
2020-06-22Jira writer: always escape bracesAlbert Krewinkel1-1/+1
Braces are now always escaped, even within words or when surrounded by whitespace. Jira and Confluence treat braces specially. Package jira-wiki-markup must be version 1.3.2 or later. Fixes: #6478
2020-06-19Use latest skylighting.John MacFarlane1-2/+2
2020-06-15Remove unused dependency `vector` (#6462)Laurent P. René de Cotret1-1/+0
2020-06-14Jira reader: require jira-wiki-markup 1.3.1 or laterAlbert Krewinkel1-1/+1
This solves the following problems of the Jira reader: * Two consecutive markup chars are now parsed verbatim; styled text must not be empty. * Styled text may not contain newlines. * Links to anchors are now parsed as links. Fixes: #6343 Fixes: #6325 Fixes: #6407
2020-05-28Allow http-client 0.7.John MacFarlane1-1/+1
2020-05-25Allow aeson 1.5 (#6400)Felix Yan1-1/+1
Builds fine and all tests pass here.
2020-05-21Allow tasty 1.3.x.John MacFarlane1-1/+1
2020-05-18Bump cabal-version to 2.2 (#6377)Lila1-1/+1
In b3cfdc2c7 the license was changed to GPL-2.0-or-later which is an SPDX expression, however cabal only interprets the license field as an SPDX expression if cabal-version is 2.2 or later. Starting with 2.2 cabal-version also has to be the first statement in the .cabal file.
2020-05-13Correct license listed in cabalLila1-1/+1
`GPL-2` is interpreted as GPLv2 only, however the actual license is GPLv2 or later
2020-05-12Use latest skylighting.John MacFarlane1-2/+2
This adds `aria-hidden="true"` to the empty a elements, which helps people who use screen readers.
2020-04-25Allow base64-bytestring 1.1.John MacFarlane1-2/+2
2020-04-19Use pandoc-types 1.21, new texmath.John MacFarlane1-3/+3
2020-04-17API change: use new type PandocLua for all pandoc Lua operationsAlbert Krewinkel1-0/+2
The new type `PandocLua` is an instance of the `PandocMonad` typeclass and can thus be used in a way similar to `PandocIO`.
2020-04-17Class: generalize PandocIO functions to MonadIOAlbert Krewinkel1-0/+1
2020-04-17API change: use PandocError for exceptions in Lua subsystemAlbert Krewinkel1-3/+6
The PandocError type is used throughout the Lua subsystem, all Lua functions throw an exception of this type if an error occurs. The `LuaException` type is removed and no longer exported from `Text.Pandoc.Lua`. In its place, a new constructor `PandocLuaError` is added to PandocError.
2020-04-17Revert 0e48a02 and dependency on base-noprelude...John MacFarlane1-31/+41
which hasn't been updated for ghc 8.10. See discussion at #6187.
2020-04-13Add an option to disable certificate validation (#6156)Cédric Couralet1-0/+1
This commit adds the option `--no-check-certificate`, which disables certificate checking when resources are fetched by HTTP. Co-authored-by: Cécile Chemin <cecile.chemin@insee.fr> Co-authored-by: Juliette Fourcot <juliette.fourcot@insee.fr>
2020-04-12Require doctemplates 0.8.2.John MacFarlane1-2/+2
2020-04-06Allow haddock-library 1.9.x.John MacFarlane1-1/+1
2020-04-04Jira: support citations, attachment links, and user linksAlbert Krewinkel1-1/+1
Closes: #6231 Closes: #6238 Closes: #6239
2020-04-03Jira reader: resolve parsing issues of blockquote, colorAlbert Krewinkel1-1/+1
Parsing problems occurring with block quotes and colored text have been resolved. Fixes: #6233 Fixes: #6235
2020-04-01Allow hslua 1.1 (#6243)Felix Yan1-2/+2
Builds fine and all tests pass.
2020-03-31Jira writer: convert spans with class `underline` to inserted textAlbert Krewinkel1-0/+1
Spans with class `underline` as converted into Jira text marked as `+inserted+`, i.e. surrounded by plus-signs.
2020-03-28Jira reader: fix multiple parsing problemsAlbert Krewinkel1-1/+1
Multiple parsing problems are resolved, including issues with empty table cells, faulty recognition of closing emphasis characters, and parsing of image attributes. Fixes: #6212 Fixes: #6219 Fixes: #6220
2020-03-27Bump QuickCheck upper bound.John MacFarlane1-1/+1