aboutsummaryrefslogtreecommitdiff
path: root/src/test-pandoc.hs
AgeCommit message (Collapse)AuthorFilesLines
2011-06-06Markdown writer: Insert HTML comment btw list and indented code block.John MacFarlane1-0/+2
This prevents the code block from being interpreted as part of the list.
2011-01-29Added HTML writer tests for inline code.John MacFarlane1-0/+2
2011-01-29Moved tests to src.John MacFarlane1-0/+30
2011-01-11Moved test-pandoc.hs to tests directory.Nathan Gass1-197/+0
2011-01-11Removed run prefix from all test functions.Nathan Gass1-70/+68
2011-01-11Include lhs tests in existing testGroup structure.Nathan Gass1-41/+30
2011-01-11Add reader groups for markdown and rst reader tests.Nathan Gass1-10/+12
2011-01-10Changed test-pandoc to use test-framework and HUnit.Nathan Gass1-113/+102
2011-01-06test-pandoc: Wrap to 78 columns in lhs writer tests.John MacFarlane1-1/+1
2010-12-17Added new prettyprinting module.John MacFarlane1-8/+7
* Added Text.Pandoc.Pretty. This is better suited for pandoc than the 'pretty' package. One advantage is that we now get proper wrapping; Emph [Inline] is no longer treated as a big unwrappable unit. Previously we only got breaks for spaces at the "outer level." We can also more easily avoid doubled blank lines. Performance is significantly better as well. * Removed Text.Pandoc.Blocks. Text.Pandoc.Pretty allows you to define blocks and concatenate them. * Modified markdown, RST, org readers to use Text.Pandoc.Pretty instead of Text.PrettyPrint.HughesPJ. * Text.Pandoc.Shared: Added writerColumns to WriterOptions. * Markdown, RST, Org writers now break text at writerColumns. * Added --columns command-line option, which sets stColumns and writerColumns. * Table parsing: If the size of the header > stColumns, use the header size as 100% for purposes of calculating relative widths of columns.
2010-12-15test-pandoc: removed need to depend on MissingH.John MacFarlane1-2/+2
2010-12-15Added 'tests' Cabal flag.John MacFarlane1-0/+220
+ This ensures that test-pandoc gets built. + 'cabal test' now runs this. + The old tests/RunTests.hs has been removed, and src/test-pandoc.hs added.