summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Compat
Commit message (Collapse)AuthorAge
* Except Compat: Updated to export more module functionsMatthew Pickering2014-07-31
|
* Added compatability layer to support directory-1.1Matthew Pickering2014-07-27
|
* 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.
* Text.Pandoc.Compat.Monoid: Small improvements to the (<>) definition.John MacFarlane2013-08-12
|
* Added Text.Pandoc.Compat.TagSoupEntity.John MacFarlane2013-08-08
| | | | | This allows pandoc to compile with tagsoup 0.13.x. Thanks to Dirk Ullrich for the patch.
* Added Text.Pandoc.Compat.Monoid.John MacFarlane2013-08-08
This allows pandoc to compile with base < 4.5, where Data.Monoid doesn't export `<>`. Thanks to Dirk Ullirch for the patch.