summaryrefslogtreecommitdiff
path: root/src/Text
Commit message (Collapse)AuthorAge
* Updated code example in Text.Pandoc.John MacFarlane2015-03-28
|
* Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵John MacFarlane2015-03-28
|\ | | | | | | | | | | | | | | | | | | | | mpickering-errortype Conflicts: benchmark/benchmark-pandoc.hs src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/Org.hs src/Text/Pandoc/Readers/RST.hs tests/Tests/Readers/LaTeX.hs
| * Move utility error functions to Text.Pandoc.SharedMatthew Pickering2015-02-18
| |
| * Update haddocks and copyright noticesMatthew Pickering2015-02-18
| |
| * Update Pandoc.hsMatthew Pickering2015-02-18
| |
| * Make safeRead safe.Matthew Pickering2015-02-18
| | | | | | | | Fixes #1801
| * Change return type of Txt2Tags readerMatthew Pickering2015-02-18
| |
| * Change return type of Textile readerMatthew Pickering2015-02-18
| |
| * Change return type of TWiki readerMatthew Pickering2015-02-18
| |
| * Change return type of RST readerMatthew Pickering2015-02-18
| |
| * Change return type of Org readerMatthew Pickering2015-02-18
| |
| * Change return type of OPML readerMatthew Pickering2015-02-18
| |
| * Change return type of Native readerMatthew Pickering2015-02-18
| |
| * Change return type of Mediawiki readerMatthew Pickering2015-02-18
| |
| * Change return type of Markdown readerMatthew Pickering2015-02-18
| |
| * Change return type of LaTeX readerMatthew Pickering2015-02-18
| |
| * Change return type of Haddock readerMatthew Pickering2015-02-18
| |
| * Change return type of HTML readerMatthew Pickering2015-02-18
| |
| * Change return type of EPUB readerMatthew Pickering2015-02-18
| |
| * Change return type of Docx readerMatthew Pickering2015-02-18
| |
| * Change return type of DocBook readerMatthew Pickering2015-02-18
| |
| * Add Text.Pandoc.Error module with PandocError typeMatthew Pickering2015-02-18
| |
| * Remove partial function from PrettyMatthew Pickering2015-02-18
| |
| * Remove landmine from ImageSizeMatthew Pickering2015-02-18
| |
| * Factor out "returnState" into Parsing moduleMatthew Pickering2015-02-18
| |
| * HLint changesMatthew Pickering2015-02-18
| |
| * Remove F Monad from Markdown readerMatthew Pickering2015-02-18
| |
| * Generalise signature of addWarningMatthew Pickering2015-02-18
| |
| * Add check to see whether in a footnote to ParserState (to avoid circular ↵Matthew Pickering2015-02-18
| | | | | | | | footnotes)
| * Remove F monad from ParsingMatthew Pickering2015-02-18
| |
| * Changed parseWithWarnings to the more general returnWarnings parser transformerMatthew Pickering2015-02-18
| |
| * Remove F monad from Org Reader.Matthew Pickering2015-02-18
| |
| * Added generalize function which can be used to lift specialised parsers.Matthew Pickering2015-02-18
| | | | | | | | Monad m => Parsec s st a -> Parsec T s st m a
* | Markdown Reader: Require nonempty value in mmd title blockNikolay Yakimov2015-03-28
| | | | | | | | | | `many1Till` will gobble up newline, and then whole following line will match, so I had to use guard here.
* | Markdown Reader: Req. " " after key in mmd title blockNikolay Yakimov2015-03-28
| | | | | | | | | | | | | | Require space after key-value delimiter colon in mmd title block. Issue #2026 Amend: parsec's `spaces` include newlines, but we don't want that. Had to make custom `spaceNoNewline` parser here
* | Markdown Reader: Disable meta exts for meta valuesNikolay Yakimov2015-03-28
| | | | | | | | | | Disable all metadata block extensions when parsing metadata field values. Issue #2026
* | Docx Writer: Fix StyleMapNikolay Yakimov2015-03-24
| | | | | | | | | | I've messed up badly with it, so it didn't work properly most of the time. At the plus side, fallback mechanic is working wonderfully.
* | Allow pipe tables with header but no body.John MacFarlane2015-03-23
| | | | | | | | Closes #2017.
* | Fix accidently usage of list monad instanceMatthew Pickering2015-03-23
| |
* | Add missing importMatthew Pickering2015-03-22
| |
* | Factor out "returnState" into Parsing moduleMatthew Pickering2015-03-22
| |
* | HLint changesMatthew Pickering2015-03-22
| |
* | Remove F Monad from Markdown readerMatthew Pickering2015-03-22
| |
* | Generalise signature of addWarningMatthew Pickering2015-03-22
| |
* | Add check to see whether in a footnote to ParserState (to avoid circular ↵Matthew Pickering2015-03-22
| | | | | | | | footnotes)
* | Remove F monad from ParsingMatthew Pickering2015-03-22
| |
* | Changed parseWithWarnings to the more general returnWarnings parser transformerMatthew Pickering2015-03-22
| |
* | Remove F monad from Org Reader.Matthew Pickering2015-03-22
| |
* | Added generalize function which can be used to lift specialised parsers.Matthew Pickering2015-03-22
| | | | | | | | Monad m => Parsec s st a -> Parsec T s st m a
* | Markdown writer: fixes for GHC 7.10.John MacFarlane2015-03-19
| |