Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-07-27 | Text.Pandoc.Pretty: added blanklines. | John MacFarlane | 1 | -15/+17 | |
This ensures a certain number of blanklines (and no more) in output. | |||||
2014-05-09 | Update copyright notices for 2014, add missing notices | Albert Krewinkel | 1 | -2/+2 | |
2014-02-06 | Removed RenderState datatype context. | Merijn Verstraaten | 1 | -2/+1 | |
Reasoning: - It's not Haskell2010 - It breaks some tools - Doesn't actually do anything - RenderState doesn't even have a Monoid instance | |||||
2014-01-02 | Pretty: Added nestle. API change, minor version bump to 1.12.3. | John MacFarlane | 1 | -1/+10 | |
2013-08-04 | Remove CPP from default-extensions; add pragmas to modules as needed. | John MacFarlane | 1 | -1/+1 | |
2013-02-28 | Pretty: Fixed chomp so it works inside Prefixed elements. | John MacFarlane | 1 | -6/+8 | |
2013-02-28 | Pretty: Better Show instance for debugging purposes. | John MacFarlane | 1 | -4/+1 | |
2012-08-13 | Pretty: Fixed bug that caused combining characters to be dropped. | John MacFarlane | 1 | -6/+5 | |
2012-07-26 | Fixed whitespace errors. | John MacFarlane | 1 | -1/+1 | |
2012-06-30 | Pretty: Added wide punctuation range to charWidth. | John MacFarlane | 1 | -1/+3 | |
Fixes bug with Chinese commas in tables. | |||||
2012-02-08 | More efficient implementation of nowrap in Pretty. | John MacFarlane | 1 | -4/+4 | |
2012-02-05 | Fixed Pretty so it uses Data.Monoid's <> w/ GHC 7.4. | John MacFarlane | 1 | -2/+13 | |
Note: changed fixity to infixr 6. | |||||
2012-02-05 | Remove dependency on dlist. | John MacFarlane | 1 | -6/+7 | |
Use sequence in Pretty instead. | |||||
2012-01-27 | Made charWidth in Text.Pandoc.Pretty complete. | John MacFarlane | 1 | -29/+35 | |
Used the unicode spec EastAsianWidth.txt. All characters marked W or F get width 2. Closes #377. | |||||
2012-01-25 | Pretty: Export realLength and use it in calculating offsets. | John MacFarlane | 1 | -10/+16 | |
This should help fix setext headers and tables containing asian wide characters and combining characters. | |||||
2012-01-25 | Pretty: Added charWidth function. | John MacFarlane | 1 | -0/+37 | |
2011-12-31 | Pretty: Added beforeNonBreak combinator. | John MacFarlane | 1 | -0/+21 | |
This allows you to include something conditionally on it being before a nonblank. Used for RST inline math. | |||||
2011-11-18 | Pretty: Added chomp combinator. | John MacFarlane | 1 | -0/+13 | |
2010-12-22 | Pretty: Added quote, doubleQuote. | John MacFarlane | 1 | -0/+10 | |
2010-12-21 | Pretty: don't print a breaking space before a newline. | John MacFarlane | 1 | -0/+4 | |
2010-12-20 | Renamed 'enclosed' to 'inside'. | John MacFarlane | 1 | -7/+7 | |
This avoids conflict with 'enclosed' in Text.Pandoc.Parsing. | |||||
2010-12-19 | Pretty: Fixed parens. | John MacFarlane | 1 | -1/+1 | |
2010-12-19 | Pretty: Added enclosed, parens. | John MacFarlane | 1 | -2/+13 | |
2010-12-19 | Pretty: Added braces and brackets. | John MacFarlane | 1 | -0/+9 | |
2010-12-17 | Added new prettyprinting module. | John MacFarlane | 1 | -0/+395 | |
* 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. |