aboutsummaryrefslogtreecommitdiff
path: root/tests/lhs-test-markdown.native
AgeCommit message (Collapse)AuthorFilesLines
2015-12-12Fixed tests.John MacFarlane1-1/+1
2015-12-11Implemented SoftBreak and new `--wrap` option.John MacFarlane1-2/+2
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.
2013-01-26RST writer: Use `.. code:: language` for code blocks with language.John MacFarlane1-1/+1
Closes #721. Also fixed whitespace in lhs tests.
2013-01-09Added Attr field to Header.John MacFarlane1-0/+8
Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers.