aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
AgeCommit message (Collapse)AuthorFilesLines
2018-01-21Require tagsoup 0.14.3 - closes #4282.John MacFarlane1-1/+1
This fixes an HTML tokenization bug whereby comments were sometimes consumed with open tags.
2018-01-21Powerpoint writer tests: New test framework for pptx.Jesse Rosenthal1-0/+2
Previously we had tested certain properties of the output PowerPoint slides. Corruption, though, comes as the result of a numebr of interrelated issues in the output pptx archive. This is a new approach, which compares the output of the Powerpoint writer with files that we know to (a) not be corrupt, and (b) to show the desired output behavior (details below). This commit introduces three tests using the new framework. More will follow. The test procedure: given a native file and a pptx file, we generate a pptx archive from the native file, and then test: 1. Whether the same files are in the two archives 2. Whether each of the contained xml files is the same. (We skip time entries in `docProps/core.xml`, since these are derived from IO. We just check to make sure that they're there in the same way in both files.) 3. Whether each of the media files is the same. Note that steps 2 and 3, though they compare multiple files, are one test each, since the number of files depends on the input file (if there is a failure, it will only report the first failed file comparison in the test failure).
2018-01-18More stack.yaml fixes for skylighting.John MacFarlane1-1/+1
2018-01-18Require latest skylighting.John MacFarlane1-1/+1
2018-01-17Version to 2.1.1.John MacFarlane1-1/+1
2018-01-16Docx reader: Parse instrText info in fldChar tags.Jesse Rosenthal1-0/+1
We introduce a new module, Text.Pandoc.Readers.Docx.Fields which contains a simple parsec parser. At the moment, only simple hyperlink fields are accepted, but that can be extended in the future.
2018-01-15Renaming: Json -> JSON in modules and functions.John MacFarlane1-1/+1
2018-01-15Merge pull request #4227 from tarleb/lua-run-json-filterJohn MacFarlane1-1/+5
Run JSON filters from Lua filters
2018-01-14Remove custom prelude and ghc 7.8 support.John MacFarlane1-25/+1
2018-01-14Fix cabal to use base-compat with ghc < 7.10.John MacFarlane1-2/+7
2018-01-14Use base-compat for our custom prelude.John MacFarlane1-1/+2
This should give us more complete coverage of newer base features. See #4255.
2018-01-14Allow latest QuickCheck.John MacFarlane1-1/+1
2018-01-14Powerpoint writer: Refactor into separate modules.Jesse Rosenthal1-0/+2
There are two steps in the conversion: a conversion from pandoc to a Presentation datatype modeling pptx, and a conversion from Presentation to a pptx archive. The two steps were sharing the same state and environment, and the code was getting a bit spaghetti-ish. This separates the conversion into separate modules (T.P.W.Powerpoint.Presentation, which defineds the Presentation datatype and goes Pandoc->Presentation) and (T.P.W.Pandoc.Output, which goes Presentation->Archive). Text.Pandoc.Writers.Powerpoint a thin wrapper around the two modules.
2018-01-13Move filter functions to separate moduleAlbert Krewinkel1-1/+5
2018-01-12Lua filters: improve error messagesAlbert Krewinkel1-0/+1
Provide more context about the task which caused an error.
2018-01-09Bump criterion upper bound.John MacFarlane1-1/+1
2018-01-08Allow tasty 1.0.John MacFarlane1-1/+1
2018-01-07Use latest skylighting and omit the 'missingincludes' check.John MacFarlane1-1/+1
If you use a custom syntax definition that refers to a syntax you haven't loaded, pandoc will now complain when it is highlighting the text, rather than at the start. This saves a huge performance hit from the `missingIncludes` check. Closes #4226.
2018-01-05Update copyright notices to include 2018Albert Krewinkel1-1/+1
2018-01-04Bump hslua version to 0.9.5Albert Krewinkel1-1/+1
This version fixes a bug that made it difficult to handle failures while getting lists or a Map from Lua. A bug in pandoc, which made it necessary to always pass a tag when using MetaList or MetaBlock, is fixed as a result. Using the pandoc module's constructor functions for these values is now optional (if still recommended).
2017-12-29Powerpoint Writer tests: Add quickcheck tests for content types.Jesse Rosenthal1-1/+2
We want to make sure we always have an override for each xml file in the content types file.
2017-12-28Filter changes.John MacFarlane1-1/+1
* Previously we ran all lua filters before JSON filters. * Now we run filters in the order they are presented on the command line, whether lua or JSON. * The type of `applyFilters` has changed (incompatible API change). * `applyLuaFilters` has been removed (incompatible API change). * Bump version to 2.1. See #4196.
2017-12-28Powerpoint writer tests: use IO.John MacFarlane1-1/+0
Otherwise we can't find the data files when compiled with -embed_data_files.
2017-12-28Moved makeCanoncial definition out of ifdef!John MacFarlane1-11/+11
Also added slide2 to the default pptx, and reordered the data files in pandoc.cabal.
2017-12-28Added data/docx/word/comments.xml to pandoc.cabal data files.John MacFarlane1-0/+1
2017-12-28PowerPoint writer: Introduce beginning of testsJesse Rosenthal1-0/+8
This is the beginning of a test suite for the powerpoint writer. Initial tests are for the number of slides. Note that at the moment it does not test against corruption in Microsoft PowerPoint; it just tests that certain outcomes work as expected. More tests will be added. This test framework uses the PandocPure monad introduced with Pandoc 2.0.
2017-12-28Org reader: support minlevel option for includesAlbert Krewinkel1-0/+1
The level of headers in included files can be shifted to a higher level by specifying a minimum header level via the `:minlevel` parameter. E.g. `#+include: "tour.org" :minlevel 1` will shift the headers in tour.org such that the topmost headers become level 1 headers. Fixes: #4154
2017-12-28Break-up org reader test fileAlbert Krewinkel1-0/+12
The org reader test file had grown large, to the point that editor performance was negatively affected in some cases. The tests are spread over multiple submodules, and re-combined into a tasty TestTree in the main org reader test file.
2017-12-27Add custom tests to pandoc.cabalJohn MacFarlane1-0/+2
2017-12-23Bump to 2.0.6.John MacFarlane1-1/+1
2017-12-21Mention JATS output (and input) in MANUAL, README, cabal description.John MacFarlane1-1/+1
2017-12-21Merge pull request #4177 from stencila/jats-xml-readerJohn MacFarlane1-0/+3
Add Basic JATS reader based on DocBook reader
2017-12-21Lua modules: added pandoc.utils moduleAlbert Krewinkel1-0/+1
A new module `pandoc.utils` has been created. It holds utility functions like `sha1`, which was moved from the main `pandoc` module.
2017-12-21Lua modules: make a Haskell module for each Lua moduleAlbert Krewinkel1-0/+1
Definitions for the `pandoc.mediabag` modules are moved to a separate Haskell module. Change: minor
2017-12-21Lua modules: move to dedicated submoduleAlbert Krewinkel1-1/+1
The Haskell module defining the Lua `pandoc` module is moved to Text.Pandoc.Lua.Module.Pandoc. Change: minor
2017-12-21Removed default.theme data file.John MacFarlane1-2/+0
It is no longer needed now that we have `--print-highlight-style`. See #4096.
2017-12-20Add Basic JATS reader based on DocBook readerHamish Mackenzie1-0/+3
2017-12-14Merge pull request #4148 from stencila/jats-figuresJohn MacFarlane1-0/+1
fig, table-wrap & caption Divs for JATS writer
2017-12-13Custom writer: use init file to setup Lua interpreterAlbert Krewinkel1-1/+2
The same init file (`data/init`) that is used to setup the Lua interpreter for Lua filters is also used to setup the interpreter of custom writers.lua.
2017-12-13fig, table-wrap & caption Divs for JATS writerHamish Mackenzie1-0/+1
Support writing <fig> and <table-wrap> elements with <title> and <caption> inside them by using Divs with class set to on of fig, table-wrap or cation. The title is included as a Heading so the constraint on where Heading can occur is also relaxed. Also leaves out empty alt attributes on links.
2017-12-11Change version to 2.0.5.John MacFarlane1-1/+1
Note that we don't need to bump the second number for an additional module and exported function.
2017-12-11Version to 2.1John MacFarlane1-1/+1
2017-12-11Update cabal description to include powerpoint.John MacFarlane1-3/+4
2017-12-11Integrate Powerpoint writer into pandoc.Jesse Rosenthal1-0/+42
2017-12-10Changes for skylighting-0.5.John MacFarlane1-1/+1
This fixes a bug in 2.0.4, whereby pandoc could not read the theme files generated with `--print-highlight-style`. It also fixes some CSS issues involving line numbers. Highlighted code blocks are now enclosed in a div with class sourceCode. Highlighting CSS no longer sets a generic color for pre and code; we only set these for class `sourceCode`. This will close #4133 and #4128.
2017-12-07Add '-threaded' to ghc-options for executable.John MacFarlane1-1/+1
2017-12-06Lua filters: use script to initialize the interpreterAlbert Krewinkel1-0/+2
The file `init.lua` is used to initialize the Lua interpreter which is used in Lua filters. This gives users the option to require libraries which they want to use in all of their filters, and to extend default modules.
2017-12-02Lua filters: refactor lua module handlingAlbert Krewinkel1-1/+2
The integration with Lua's package/module system is improved: A pandoc-specific package searcher is prepended to the searchers in `package.searchers`. The modules `pandoc` and `pandoc.mediabag` can now be loaded via `require`.
2017-12-04Bump lower bound of hsluaAlbert Krewinkel1-1/+1
The release hslua 0.9.3 contains a new function which makes using Haskell functions as package loaders much easier.
2017-12-02Bump bounds for binary, http-types, tasty-hunitJohn MacFarlane1-3/+3