Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-06-10 | Changed all readers to take Text instead of String. | John MacFarlane | 1 | -3/+3 | |
Readers: Renamed StringReader -> TextReader. Updated tests. API change. | |||||
2017-03-04 | Stylish-haskell automatic formatting changes. | John MacFarlane | 1 | -6/+6 | |
2017-01-25 | Removed readerSmart and the --smart option; added Ext_smart extension. | John MacFarlane | 1 | -1/+1 | |
Now you will need to do -f markdown+smart instead of -f markdown --smart This change opens the way for writers, in addition to readers, to be sensitive to +smart, but this change hasn't yet been made. API change. Command-line option change. Updated manual. | |||||
2017-01-25 | Working on readers. | Jesse Rosenthal | 1 | -3/+4 | |
2015-12-29 | Use cmark 0.5. | John MacFarlane | 1 | -4/+12 | |
Closes #2605. | |||||
2015-12-12 | Modified readers to emit SoftBreak when appropriate. | John MacFarlane | 1 | -1/+1 | |
2015-08-07 | Updated readers, writers and README for link attribute | mb21 | 1 | -1/+1 | |
2015-08-07 | Updated readers and writers for new image attribute parameter. | John MacFarlane | 1 | -1/+1 | |
(mb21) | |||||
2015-03-28 | Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵ | John MacFarlane | 1 | -2/+3 | |
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 | |||||
2015-03-17 | Fixed a compiler warning. | John MacFarlane | 1 | -1/+1 | |
2015-03-17 | Added CommonMark reader using cmark (libcmark bindings). | John MacFarlane | 1 | -0/+118 | |
- Added commonmark as an input format. - Added `Text.Pandoc.Readers.CommonMark.readCommonMark`. - For now, we use the markdown writer to generate benchmark text for the CommonMark reader. We can change this when we get a writer. |