summaryrefslogtreecommitdiff
path: root/src/test-pandoc.hs
Commit message (Collapse)AuthorAge
* Markdown writer: Insert HTML comment btw list and indented code block.John MacFarlane2011-06-06
| | | | This prevents the code block from being interpreted as part of the list.
* Added HTML writer tests for inline code.John MacFarlane2011-01-29
|
* Moved tests to src.John MacFarlane2011-01-29
|
* Moved test-pandoc.hs to tests directory.Nathan Gass2011-01-11
|
* Removed run prefix from all test functions.Nathan Gass2011-01-11
|
* Include lhs tests in existing testGroup structure.Nathan Gass2011-01-11
|
* Add reader groups for markdown and rst reader tests.Nathan Gass2011-01-11
|
* Changed test-pandoc to use test-framework and HUnit.Nathan Gass2011-01-10
|
* test-pandoc: Wrap to 78 columns in lhs writer tests.John MacFarlane2011-01-06
|
* Added new prettyprinting module.John MacFarlane2010-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* test-pandoc: removed need to depend on MissingH.John MacFarlane2010-12-15
|
* Added 'tests' Cabal flag.John MacFarlane2010-12-15
+ 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.