aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)AuthorFilesLines
2020-04-19Use dev version of pandoc-citeproc...John MacFarlane1-1/+2
so we can use pandoc-types 1.21 with it.
2020-04-19Use pandoc-types 1.21, new texmath.John MacFarlane1-2/+2
2020-04-17API change: use PandocError for exceptions in Lua subsystemAlbert Krewinkel1-0/+1
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 MacFarlane1-2/+2
now that @despresc's changes have been merged.
2020-04-15Use custom pandoc-types repo with new table typesAlbert Krewinkel1-1/+1
2020-04-15Use the new builders, modify readers to preserve empty headersdespresc1-1/+1
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 accessorsdespresc1-1/+1
2020-04-15Adapt to the newest Table type, fix some previous adaptation issuesdespresc1-1/+1
- 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 typedespresc1-1/+4
2020-04-12Require doctemplates 0.8.2.John MacFarlane1-1/+1
2020-04-04Jira: support citations, attachment links, and user linksAlbert Krewinkel1-1/+1
Closes: #6231 Closes: #6238 Closes: #6239
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-19Jira reader: fix parsing of tables without preceding blanklineAlbert Krewinkel1-1/+1
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 Krewinkel1-1/+1
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 Krewinkel1-1/+1
* 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 MacFarlane1-1/+11
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 MacFarlane1-11/+1
2020-02-15Use pandoc-citeproc 0.17.John MacFarlane1-1/+1
2020-02-15Use latest texmath.John MacFarlane1-1/+1
2020-01-21Use skylighting 0.8.3.2.John MacFarlane1-2/+2
2020-01-13Update versions for doclayout, doctemplates.John MacFarlane1-2/+2
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 Krewinkel1-0/+1
Closes #5556
2019-12-11Bump pandoc-citeproc version to 0.16.4.1.John MacFarlane1-1/+1
2019-12-08Use external emojis package.John MacFarlane1-0/+1
Moved the emoji-specified code into an external package we can depend on.
2019-12-07Use doctemplates 0.8.John MacFarlane1-1/+1
2019-11-26Use skylighting 0.8.3.John MacFarlane1-2/+2
2019-11-24Update to doctemplates 0.7.2, update template docs.John MacFarlane1-1/+1
This adds the `nowrap` filter.
2019-11-21Use released pandoc-citeproc 0.16.4.John MacFarlane1-3/+1
2019-11-18Use doctemplates 0.7.1John MacFarlane1-3/+1
2019-11-17Use dev version of doctemplates.John MacFarlane1-1/+3
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-5/+5
PR #5884. + Use pandoc-types 1.20 and texmath 0.12. + Text is now used instead of String, with a few exceptions. + In the MediaBag module, some of the types using Strings were switched to use FilePath instead (not Text). + In the Parsing module, new parsers `manyChar`, `many1Char`, `manyTillChar`, `many1TillChar`, `many1Till`, `manyUntil`, `mantyUntilChar` have been added: these are like their unsuffixed counterparts but pack some or all of their output. + `glob` in Text.Pandoc.Class still takes String since it seems to be intended as an interface to Glob, which uses strings. It seems to be used only once in the package, in the EPUB writer, so that is not hard to change.
2019-11-07Change merge behavior for metadata.John MacFarlane1-1/+3
Previously, if a document contained two YAML metadata blocks that set the same field, the conflict would be resolved in favor of the first. Now it is resolved in favor of the second (due to a change in pandoc-types). This makes the behavior more uniform with other things in pandoc (such as reference links and `--metadata-file`).
2019-11-04Use latest pandoc-citeproc 0.16.3.1 in binary packages.John MacFarlane1-1/+1
2019-10-30Use latest doclayout.John MacFarlane1-1/+1
Closes #5863.
2019-10-29Changes to build with new doctemplates/doclayout.John MacFarlane1-4/+2
The new version of doctemplates adds many features to pandoc's templating system, while remaining backwards-compatible. New features include partials and filters. Using template filters, one can lay out data in enumerated lists and tables. Templates are now layout-sensitive: so, for example, if a text with soft line breaks is interpolated near the end of a line, the text will break and wrap naturally. This makes the templating system much more suitable for programatically generating markdown or other plain-text files from metadata.
2019-10-16Use latest dev doctemplatesJohn MacFarlane1-1/+1
2019-10-15Use latest dev doctemplates.John MacFarlane1-1/+1
2019-10-14Minor template & test changes for latest dev doctemplates.John MacFarlane1-1/+1
2019-10-11stack.yaml - re-add HsYAML-aeson, as pandoc-citeproc uses itJohn MacFarlane1-0/+1
2019-10-10Improve parsing of --defaults.John MacFarlane1-2/+1
- Add FromYAML instances to Opt and to all subsidiary types. - Remove the use of HsYAML-aeson, which doesn't give good position information on errors. - Rename some fields in Opt to better match cli options or reflect what the ycontain [API change]: + optMetadataFile -> optMetadataFiles + optPDFEngineArgs -> optPDFEngineOpts + optWrapText -> optWrap - Add IpynbOutput enumerated type to Text.Pandoc.App.Opts. Use this instead fo a string for optIpynbOutput. - Add FromYAML instance for Filter in Text.Pandoc.Filters. With these changes parsing of defaults files should be complete and should give decent error messages. Now (unlike before) we get an error if an unknown field is used.
2019-10-09Change optVariables from [(String, String)] to Context Text.John MacFarlane1-1/+1
In Text.Pandoc.App.Opt [API change].
2019-10-09Options.WriterOptions: Change type of writerVariables to Context Text.John MacFarlane1-1/+3
This will allow structured values. [API change]
2019-10-07Remove derive_json_via_th flag; always use TH.John MacFarlane1-1/+0
This cuts down on code duplication and reduces the chance for errors. See #4083.
2019-10-07Make derive_json_via_th flag false by defaultJohn MacFarlane1-1/+1
2019-10-06stack.yaml - added some missing flagsJohn MacFarlane1-0/+2
2019-10-04Require haddock-library >= 1.8John MacFarlane1-0/+1
2019-10-03Use texmath 0.11.3John MacFarlane1-1/+1
2019-10-03Use latest skylighting.John MacFarlane1-2/+2
2019-09-30Use latest skylighting-core.John MacFarlane1-1/+2
Closes #5776.
2019-09-30Use skylighting >= 0.8.2.2.John MacFarlane1-1/+1