Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-06-06 | Markdown writer: Insert HTML comment btw list and indented code block. | John MacFarlane | 1 | -0/+2 | |
This prevents the code block from being interpreted as part of the list. | |||||
2011-01-29 | Added HTML writer tests for inline code. | John MacFarlane | 1 | -0/+2 | |
2011-01-29 | Moved tests to src. | John MacFarlane | 1 | -0/+30 | |
2011-01-11 | Moved test-pandoc.hs to tests directory. | Nathan Gass | 1 | -197/+0 | |
2011-01-11 | Removed run prefix from all test functions. | Nathan Gass | 1 | -70/+68 | |
2011-01-11 | Include lhs tests in existing testGroup structure. | Nathan Gass | 1 | -41/+30 | |
2011-01-11 | Add reader groups for markdown and rst reader tests. | Nathan Gass | 1 | -10/+12 | |
2011-01-10 | Changed test-pandoc to use test-framework and HUnit. | Nathan Gass | 1 | -113/+102 | |
2011-01-06 | test-pandoc: Wrap to 78 columns in lhs writer tests. | John MacFarlane | 1 | -1/+1 | |
2010-12-17 | Added new prettyprinting module. | John MacFarlane | 1 | -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-15 | test-pandoc: removed need to depend on MissingH. | John MacFarlane | 1 | -2/+2 | |
2010-12-15 | Added 'tests' Cabal flag. | John MacFarlane | 1 | -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. |