aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)Author
2020-08-14Whitespace change to stack.yaml to reset macos CI cache.John MacFarlane
2020-08-05Use commonmark >= 0.1.0.2. Closes #6589.John MacFarlane
2020-08-02Use new pandoc-citeproc, rfc5051.John MacFarlane
2020-07-31Use skylighting 0.9.John MacFarlane
2020-07-24Use commonmark-extensions 0.2.0.1.John MacFarlane
2020-07-23Use commonmark-0.1.0.1.John MacFarlane
Partially addresses #6556.
2020-07-19Use commonmark-extensions, commonmark-pandoc 0.2.John MacFarlane
2020-07-19Remove use of cmark-gfm for commonmark/gfm rendering.John MacFarlane
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 released versions of commonmark libraries.John MacFarlane
2020-07-19Trim down githubMarkdownExtensions.John MacFarlane
Previously it included all of the following, which make sense for the legacy markdown_github but not for gfm, since they are part of base commonmark and thus can't be turned off in gfm: - `Ext_all_symbols_escapable` - `Ext_backtick_code_blocks` - `Ext_fenced_code_blocks` - `Ext_space_in_atx_header` - `Ext_intraword_underscores` - `Ext_lists_without_preceding_blankline` - `Ext_shortcut_reference_links` ` These have been removed from `githubMarkdownExtensions`, though they're still turned on for legacy `markdown_github`.
2020-07-19Use commonmark-hs to parse commonmark/gfm...John MacFarlane
...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-06-28Bump hslua in stack.yamlJohn MacFarlane
2020-06-23Use released pandoc-citeproc.John MacFarlane
2020-06-22Use released pandoc-types 1.21.John MacFarlane
2020-06-22Jira writer: always escape bracesAlbert Krewinkel
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 MacFarlane
2020-06-14Bump jira-wiki-markup in stack.yaml.John MacFarlane
2020-06-07Make it possible to compile using Stack on NixOS (#6439)Mathieu Boespflug
On NixOS, it is necessary to compile with `stack --nix`. It is furthermore necessary to provide zlib headers when `--nix` is enabled.
2020-05-12Use latest skylighting.John MacFarlane
This adds `aria-hidden="true"` to the empty a elements, which helps people who use screen readers.
2020-05-04Add needed dependency to stack.yaml.John MacFarlane
2020-05-04Update dependency versions in stack.yaml.John MacFarlane
2020-05-04Revert "Use lts-15.11 stack"John MacFarlane
This reverts commit b78fb2889843c58426fecbe421edf1ba6a4fc76b.
2020-05-04Revert "Try downgrading HsYAML on stack to 0.2.0.0."John MacFarlane
This reverts commit 32d5d6c80ba7d6d58a77abf4b6e98a057db28fae.
2020-05-04Try downgrading HsYAML on stack to 0.2.0.0.John MacFarlane
to deal with the access violation we get in CI windows: https://github.com/jgm/pandoc/runs/643362477?check_suite_focus=true
2020-05-04Revert "Try using -fexternal-interpreter to avoid access violation on ↵John MacFarlane
Windows CI." This reverts commit 58115dd07f13be1f62fae0048fe984dea5aaf0a2.
2020-05-03Try using -fexternal-interpreter to avoid access violation on Windows CI.John MacFarlane
2020-05-03Use lts-15.11 stackJohn MacFarlane
2020-04-27Use latest pandoc-types master with underline addition.John MacFarlane
2020-04-19Use dev version of pandoc-citeproc...John MacFarlane
so we can use pandoc-types 1.21 with it.
2020-04-19Use pandoc-types 1.21, new texmath.John MacFarlane
2020-04-17API change: use PandocError for exceptions in Lua subsystemAlbert Krewinkel
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-17Use main pandoc-types repository...John MacFarlane
now that @despresc's changes have been merged.
2020-04-15Use custom pandoc-types repo with new table typesAlbert Krewinkel
2020-04-15Use the new builders, modify readers to preserve empty headersdespresc
The Builder.simpleTable now only adds a row to the TableHead when the given header row is not null. This uncovered an inconsistency in the readers: some would unconditionally emit a header filled with empty cells, even if the header was not present. Now every reader has the conditional behaviour. Only the XWiki writer depended on the header row being always present; it now pads its head as necessary.
2020-04-15Adapt to the removal of the RowSpan, ColSpan, RowHeadColumns accessorsdespresc
2020-04-15Adapt to the newest Table type, fix some previous adaptation issuesdespresc
- Writers.Native is now adapted to the new Table type. - Inline captions should now be conditionally wrapped in a Plain, not a Para block. - The toLegacyTable function now lives in Writers.Shared.
2020-04-15Implement the new Table typedespresc
2020-04-12Require doctemplates 0.8.2.John MacFarlane
2020-04-04Jira: support citations, attachment links, and user linksAlbert Krewinkel
Closes: #6231 Closes: #6238 Closes: #6239
2020-03-28Jira reader: fix multiple parsing problemsAlbert Krewinkel
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-19Jira reader: fix parsing of tables without preceding blanklineAlbert Krewinkel
A bug was fixed which caused faulty parsing if a table was not preceded by a newline and the first table cell had no space after the initial `|` characters. Fixes: #6198
2020-03-18Jira reader: fix parsing of strikeout, emphasisAlbert Krewinkel
A bug was fixed which caused non-emphasized text containing digits and/or non-special symbols (like dots) to sometimes be parsed incorrectly. Fixes: #6196
2020-03-13Jira reader: support colored inline text, indented listsAlbert Krewinkel
* Support for colored inlines has been added. * Lists are now allowed to be indented; i.e., lists are still recognized if list markers are preceded by spaces. Closes: #6183, #6184
2020-02-17Revert "stack.yaml - switch to lts-15."John MacFarlane
This reverts commit a238128a8e3c8d1942bae26d5eb4d42a8ed2fa39. This version fails on Windows. We get the following log output: Stack has not been tested with GHC versions above 8.6, and using 8.8.2, this may fail Stack has not been tested with Cabal versions above 2.4, but version 3.0.1.0 was found, this may fail Building all executables for `pandoc' once. After a successful build of all of them, only specified executables will be rebuilt. pandoc> configure (lib + exe + test) Configuring pandoc-2.9.2... pandoc> build (lib + exe + test) Preprocessing library for pandoc-2.9.2.. Building library for pandoc-2.9.2.. [ 1 of 162] Compiling Paths_pandoc [ 2 of 162] Compiling Text.Pandoc.App.FormatHeuristics [ 3 of 162] Compiling Text.Pandoc.Asciify [ 4 of 162] Compiling Text.Pandoc.CSV [ 5 of 162] Compiling Text.Pandoc.Data C:\Users\runneradmin\AppData\Roaming\stack\snapshots\9b7c3910\lib\x86_64-windows-ghc-8.8.2\texmath-0.12.0.1-LHa5Nt7Y9k12Dq03wVcYbb\HStexmath-0.12.0.1-LHa5Nt7Y9k12Dq03wVcYbb.o: unhandled PEi386 relocation type 0 ghc.exe: unable to load package `texmath-0.12.0.1' C:\Users\runneradmin\AppData\Roaming\stack\setup-exe-cache\x86_64-windows\Cabal-simple_Z6RU0evB_3.0.1.0_ghc-8.8.2.exe --builddir=.stack-work\dist\29cc6475 build lib:pandoc exe:pandoc test:test-pandoc --ghc-options " -fdiagnostics-color=always"
2020-02-17stack.yaml - switch to lts-15.John MacFarlane
2020-02-15Use pandoc-citeproc 0.17.2.9.2John MacFarlane
2020-02-15Use latest texmath.John MacFarlane
2020-01-21Use skylighting 0.8.3.2.John MacFarlane
2020-01-13Update versions for doclayout, doctemplates.John MacFarlane
Closes #6031. The new version of doclayout fixes a memory leak that affected `--include-in-header` with large files (and possibly other cases involving extremely long lines).
2019-12-17Add jira reader (#5913)Albert Krewinkel
Closes #5556