summaryrefslogtreecommitdiff
path: root/pandoc.cabal
Commit message (Collapse)AuthorAge
* Docx: Add dropcap tests.Jesse Rosenthal2014-08-11
|
* Require zip-archive 0.2.3.4, with normalized path comparison.John MacFarlane2014-08-11
|
* Improved EPUB TestsMatthew Pickering2014-08-10
| | | | | | | | | | | | | Rewrote features test to remove all unimplemented features. There are now all three examples of where an image can be included in the test. 1. Cover image 2. As a spine elemnt 3. In the document Tests have also been added to make sure that the mediabag contains all these images after processing.
* Removed OMath module, depend on texmath >= 0.8.John MacFarlane2014-08-10
|
* Added Text.Pandoc.Readers.Docx.FontsMatthew Pickering2014-08-09
|
* EPUB test renaming.John MacFarlane2014-08-07
| | | | | | | | | Renamed epub test files so they're identified more clearly as epub: features.{epub,native} -> epub.features.{epub,native}, and similarly with formatting.{epub,native}. Added epub test files to cabal file, so they'll be included in the tarball.
* Merge pull request #1494 from jkr/math-moduleJohn MacFarlane2014-08-07
|\ | | | | Math module
| * Docx reader: Split math out into math module.Jesse Rosenthal2014-08-07
| | | | | | | | | | Could use some cleanup, but this is the first step for getting an OMML reader into TeXMath.
* | Docx reader: Test inline image code.Jesse Rosenthal2014-08-07
|/
* Remove now-unnecessary TexCharJesse Rosenthal2014-08-06
| | | | TeXMath does the work now.
* Merge branch 'epubend' of https://github.com/mpickering/pandoc into ↵John MacFarlane2014-08-04
|\ | | | | | | | | | | | | mpickering-epubend Conflicts: pandoc.cabal
| * EPUB Reader: Integrated into programMatthew Pickering2014-07-31
| |
* | Add plain writer testing module to .cabal file.Artyom Kazak2014-08-03
| |
* | Bump aeson upper bound.John MacFarlane2014-08-02
| |
* | Docx tests: rewrite mediabag tests.Jesse Rosenthal2014-07-31
|/ | | | | | | | | | This will allow us to test the whole mediabag (making sure, for example, that images are added with the correct keys) instead of just individual extracted images. We compare each entry in the media bag to an image extracted on the fly from the docx. As a result, we only need one file to test with. The image in the current tests was also replaced with a smaller one.
* New module, Text.Pandoc.MediaBag.John MacFarlane2014-07-31
| | | | | | | Moved `MediaBag` definition and functions from Shared: `lookupMedia`, `mediaDirectory`, `insertMedia`, `extractMediaBag`. Removed `emptyMediaBag`; use `mempty` instead, since `MediaBag` is a Monoid.
* Docx tests: Added media test comparison function.Jesse Rosenthal2014-07-30
| | | | | Also tell pandoc.cabal that we'll be needing base64, since we want to compare strings here.
* Add and update docx tests in pandoc.cabal.Jesse Rosenthal2014-07-29
|
* Added compatability layer to support directory-1.1Matthew Pickering2014-07-27
|
* Txt2Tags Reader: Updated README and package descriptionMatthew Pickering2014-07-27
|
* Txt2Tags Reader: Added testsMatthew Pickering2014-07-27
|
* Added txt2tags readerMatthew Pickering2014-07-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | http://txt2tags.org/ There are two points which currently do not match the official implementation. 1. In the official implementation lists can not be nested like the following but the reader would interpret this as a bullet list with the first item being a numbered list. ``` - + This is not a list ``` 2. The specification describes how URIs automatically becomes links. Unfortunately as is often the case, their definitiong of URI is not clear. I tried three solutions but was unsure about which to adopt. * Using isURI from Network.URI, this matches far too many strings and is therefore unsuitable * Using uri from Text.Pandoc.Shared, this doesn't match all strings that the reference implementation matches * Try to simulate the regex which is used in the native code I went with the third approach but it is not perfect, for example trailing punctuation is captured in Urls.
* Require highlighting-kate >= 0.5.8.5.John MacFarlane2014-07-19
|
* Merge pull request #1430 from jkr/anchor-fix-2John MacFarlane2014-07-15
|\ | | | | Fix auto identified headers when already auto-id'ed
| * Docx reader: Add testJesse Rosenthal2014-07-15
| | | | | | | | Test auto ident header anchors with pandoc-generated pandoc.
* | Require highlighting-kate 0.5.8.4.John MacFarlane2014-07-15
|/ | | | For correct highlighting of identifiers in prolog and other languages.
* Docx Reader: Add a compatibility layer for Except.Jesse Rosenthal2014-07-12
| | | | | | | | | | | mtl switched from ErrorT to ExceptT, but we're not sure which mtl we'll be dealing with. This should make errors work with both. The main difference (beside the name of the module and the monad transformer) is that Except doesn't require an instance of an Error Typeclass. So we define that for compatability. When we switch to a later mtl, using Control.Monad.Exception, we can just erase the instance declaration, and all should work fine.
* Minor line wrapping.John MacFarlane2014-07-07
|
* Merge branch 'dokuwiki' of https://github.com/claremacrae/pandoc into ↵John MacFarlane2014-07-07
|\ | | | | | | claremacrae-dokuwiki
| * Merge remote-tracking branch 'jgm/master' into dokuwikiClare Macrae2014-06-29
| |\
| * | Initial work to create dokuwiki writer (#386)Clare Macrae2013-07-14
| | | | | | | | | | | | In this first version, all dokuwiki files are straight copies of the media wiki counterparts.
* | | Docx Reader: Add new file, TexChar.Jesse Rosenthal2014-07-02
| |/ |/| | | | | | | This will allow us to deal with unicode characters from word equations. This part of the process will need to continue to be improved.
* | Require haddock-library >= 1.1 and simplify haddock reader code.John MacFarlane2014-06-26
| | | | | | | | See #1346.
* | Add Reducible to cabal file.Jesse Rosenthal2014-06-23
| |
* | Require highlighting-kate >= 0.5.8.3.John MacFarlane2014-06-19
| | | | | | | | | | This change to highlighting-kate means that PHP fragments no longer need to start with `<?php`. Closes #1271.
* | Added haddock writer tests.John MacFarlane2014-06-18
| |
* | Added haddock template.John MacFarlane2014-06-18
| |
* | Finished first draft of Haddock writer.John MacFarlane2014-06-18
| |
* | Removed old haddock reader code. Add dependency on haddock-library.John MacFarlane2014-06-18
| | | | | | | | This also removes the dependency on alex and happy.
* | Naming: Use Docx instead of DocX.John MacFarlane2014-06-16
| | | | | | | | For consistency with the existing writer.
* | Bump version to 1.13John MacFarlane2014-06-16
| |
* | Reference new DocX tests in cabal file.Jesse Rosenthal2014-06-16
| |
* | Add files to cabal.Jesse Rosenthal2014-06-16
| | | | | | | | | | Note there is a build warning for unused `makeImagesSelfContained` function, since there isn't yet a command-line-option to make use of it.
* | Require aeson >= 0.7.0.5 to avoid build problems.John MacFarlane2014-06-06
| |
* | Require texmath >= 0.6.6.3. Closes #1324.John MacFarlane2014-06-03
| | | | | | | | This fixes \tilde{E}, especially in docx.
* | Version bump to 1.12.5.John MacFarlane2014-06-03
| |
* | Require latest texmath. Closes #1319.John MacFarlane2014-06-02
| | | | | | | | This allows `\left` to be used with `]`, `)`, etc.
* | Templates: Fail informatively on template syntax errors.John MacFarlane2014-06-01
| | | | | | | | | | | | | | With the move from parsec to attoparsec, we lost good error reporting. In fact, since we weren't testing for end of input, malformed templates would fail silently. Here we revert back to Parsec for better error messages.
* | PDF writer: Fixed treatment of data uris for images.John MacFarlane2014-05-28
| | | | | | | | Closes #1062.
* | Require latest highlighting-kate. Fixes #1317.John MacFarlane2014-05-27
| |