Age | Commit message (Expand) | Author | Files | Lines |
2007-05-03 | Added support for definition lists to markdown | fiddlosopher | 1 | -0/+14 |
2007-05-03 | Changed definition list syntax in markdown reader and simplified | fiddlosopher | 1 | -10/+9 |
2007-04-22 | Resolved issue #10: instead of adding "\n\n" to the | fiddlosopher | 2 | -2/+2 |
2007-04-21 | Support for definition lists in LaTeX writer. | fiddlosopher | 1 | -1/+6 |
2007-04-15 | Moved escape and nullBlock parsers from ParserCombinators/Pandoc | fiddlosopher | 1 | -3/+18 |
2007-04-13 | Added Table to prettyBlock in Shared.hs. | fiddlosopher | 1 | -0/+7 |
2007-04-10 | Extensive changes stemming from a rethinking of the Pandoc data | fiddlosopher | 13 | -1095/+996 |
2007-04-08 | Fixed bug in email obfuscation (issue #15). If the text to be obfuscated | fiddlosopher | 1 | -1/+2 |
2007-03-17 | Removed Blank block element as unnecessary. | fiddlosopher | 10 | -12/+4 |
2007-03-17 | Consolidated 'text', 'special', and 'inline' into 'inline'. | fiddlosopher | 1 | -8/+23 |
2007-03-16 | Added trys to two list start routines. Reason: | fiddlosopher | 1 | -4/+4 |
2007-03-12 | Added clauses for DefinitionList and Table to replaceReferenceLinks in | fiddlosopher | 1 | -0/+8 |
2007-03-12 | Simplified keyTable, using assumption that key blocks are not | fiddlosopher | 1 | -20/+0 |
2007-03-11 | Changes to Markdown reader relating to definition lists: | fiddlosopher | 1 | -5/+11 |
2007-03-11 | Added support for DefinitionList blocks to HTML writer. | fiddlosopher | 1 | -5/+11 |
2007-03-11 | Fixed bug in HTML email obfuscation using --strict mode. | fiddlosopher | 1 | -1/+3 |
2007-03-10 | Changed syntax of definition lists in Markdown parser: | fiddlosopher | 1 | -6/+7 |
2007-03-10 | Added parser for definition lists, derived from reStructuredText | fiddlosopher | 1 | -3/+32 |
2007-03-10 | Modified prettyPandoc to handle DefinitionList elements. | fiddlosopher | 1 | -0/+4 |
2007-03-10 | Added definition for DefinitionList block element. | fiddlosopher | 1 | -0/+3 |
2007-03-09 | Change in ordered lists in Markdown reader: | fiddlosopher | 1 | -6/+12 |
2007-03-07 | More smart quote adjustments: | fiddlosopher | 1 | -4/+2 |
2007-03-07 | Smart quote parsing in Markdown reader: | fiddlosopher | 1 | -2/+4 |
2007-03-04 | Fixed bug in noscript part of email obfuscation: | fiddlosopher | 1 | -1/+1 |
2007-03-03 | Made image parsing in HTML reader sensitive to the | fiddlosopher | 1 | -3/+6 |
2007-03-03 | Added --inline-links option to force links in HTML to be parsed | fiddlosopher | 2 | -3/+8 |
2007-02-27 | Changes to test suite for new XHTML output. | fiddlosopher | 1 | -8/+7 |
2007-02-26 | Modified HTML writer to use the Text.XHtml library. This results | fiddlosopher | 1 | -153/+142 |
2007-02-21 | Added defaultWriterOptions to Shared.hs. | fiddlosopher | 1 | -0/+15 |
2007-02-17 | In writing Markdown, print unicode nonbreaking space | fiddlosopher | 1 | -1/+8 |
2007-02-17 | Escape non-breaking space in SGML as ' ' instead of | fiddlosopher | 1 | -1/+2 |
2007-02-15 | Refactored str and strong in Markdown reader, for clarity. | fiddlosopher | 1 | -5/+9 |
2007-02-15 | Got rid of two unneeded 'getState's. Note that | fiddlosopher | 2 | -4/+3 |
2007-02-15 | Use lookAhead instead of getInput/setInput in RST reader. | fiddlosopher | 1 | -3/+1 |
2007-02-15 | Use lookAhead parser for the "first pass" looking for | fiddlosopher | 1 | -5/+3 |
2007-02-15 | Removed followedBy' parser from Text/ParserCombinators/Pandoc, | fiddlosopher | 3 | -8/+8 |
2007-02-14 | Introduced a new map, reverseEntityTable, for lookups | fiddlosopher | 1 | -6/+8 |
2007-02-14 | Changed Entities.hs to use Data.Map rather than | fiddlosopher | 1 | -9/+7 |
2007-02-14 | Fixed issue #8: slow performance in parsing inline literals in | fiddlosopher | 1 | -0/+2 |
2007-02-12 | Replaced "choice [(try (string ...), ...]" idiom with | fiddlosopher | 1 | -5/+5 |
2007-02-12 | + Added some needed "try"s before multicharacter parsers, | fiddlosopher | 3 | -7/+7 |
2007-02-12 | Added 'try' in front of 'string', where needed, or | fiddlosopher | 1 | -6/+8 |
2007-02-12 | Allow the URI in a RST hyperlink target to start on the line | fiddlosopher | 1 | -0/+3 |
2007-01-28 | Changed 'encodeEntities' to 'escapeSGMLString'. | fiddlosopher | 4 | -26/+26 |
2007-01-28 | + Simplified entity handling by removing stringToSGML from Entities.hs. | fiddlosopher | 6 | -43/+25 |
2007-01-27 | Use encodeEntities rather than stringToSGML for contents of | fiddlosopher | 2 | -2/+2 |
2007-01-27 | Cleaned up handling of embedded quotes in link titles. | fiddlosopher | 2 | -9/+4 |
2007-01-27 | More changes in entity handling: Instead of using entities for characters | fiddlosopher | 4 | -52/+51 |
2007-01-27 | Changes in entity handling: | fiddlosopher | 7 | -141/+133 |
2007-01-24 | Rewrote functions in Text/Pandoc/Shared so as not to use Text.Regex, | fiddlosopher | 1 | -28/+51 |