aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/CommonMark.hs
AgeCommit message (Collapse)AuthorFilesLines
2015-12-29Use cmark 0.5.John MacFarlane1-17/+17
Closes #2605.
2015-12-11Implemented SoftBreak and new `--wrap` option.John MacFarlane1-2/+3
Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701.
2015-08-07Updated readers, writers and README for link attributemb211-1/+1
2015-08-07Updated readers and writers for new image attribute parameter.John MacFarlane1-1/+1
(mb21)
2015-07-14Updated to use cmark >= 0.4.John MacFarlane1-4/+4
2015-07-08Correct superscript/subscript.Andrew Dunning1-3/+3
2015-03-29Added CommonMark writer.John MacFarlane1-0/+178
Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`.