summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2007-05-03Add -asxhtml flag to tidy in html2markdown. This willfiddlosopher
2007-05-03Changed definition list syntax in markdown reader and simplifiedfiddlosopher
2007-04-22Resolved issue #10: instead of adding "\n\n" to thefiddlosopher
2007-04-22Fixed bug in anyLine parser. Previously anyLine would parse anfiddlosopher
2007-04-21Support for definition lists in LaTeX writer.fiddlosopher
2007-04-15Fixed export declarations; removed unneeded import offiddlosopher
2007-04-15Moved escape and nullBlock parsers from ParserCombinators/Pandocfiddlosopher
2007-04-13Added Table to prettyBlock in Shared.hs.fiddlosopher
2007-04-11Added Text.Pandoc module that exports basic readers, writers,fiddlosopher
2007-04-10Extensive changes stemming from a rethinking of the Pandoc datafiddlosopher
2007-04-08Fixed bug in email obfuscation (issue #15). If the text to be obfuscatedfiddlosopher
2007-03-17Removed Blank block element as unnecessary.fiddlosopher
2007-03-17Consolidated 'text', 'special', and 'inline' into 'inline'.fiddlosopher
2007-03-16Added trys to two list start routines. Reason:fiddlosopher
2007-03-12Added clauses for DefinitionList and Table to replaceReferenceLinks infiddlosopher
2007-03-12Simplified keyTable, using assumption that key blocks are notfiddlosopher
2007-03-11Changes to Markdown reader relating to definition lists:fiddlosopher
2007-03-11Added support for DefinitionList blocks to HTML writer.fiddlosopher
2007-03-11Fixed bug in HTML email obfuscation using --strict mode.fiddlosopher
2007-03-10Changed syntax of definition lists in Markdown parser:fiddlosopher
2007-03-10Added parser for definition lists, derived from reStructuredTextfiddlosopher
2007-03-10Modified prettyPandoc to handle DefinitionList elements.fiddlosopher
2007-03-10Added definition for DefinitionList block element.fiddlosopher
2007-03-09Change in ordered lists in Markdown reader:fiddlosopher
2007-03-07More smart quote adjustments:fiddlosopher
2007-03-07Smart quote parsing in Markdown reader:fiddlosopher
2007-03-04Fixed bug in noscript part of email obfuscation:fiddlosopher
2007-03-03Made image parsing in HTML reader sensitive to thefiddlosopher
2007-03-03Added --inline-links option to force links in HTML to be parsedfiddlosopher
2007-02-27Changes to test suite for new XHTML output.fiddlosopher
2007-02-26Modified HTML writer to use the Text.XHtml library. This resultsfiddlosopher
2007-02-21Added defaultWriterOptions to Shared.hs.fiddlosopher
2007-02-17In writing Markdown, print unicode nonbreaking spacefiddlosopher
2007-02-17Escape non-breaking space in SGML as ' ' instead offiddlosopher
2007-02-15Refactored str and strong in Markdown reader, for clarity.fiddlosopher
2007-02-15Got rid of two unneeded 'getState's. Note thatfiddlosopher
2007-02-15Use lookAhead instead of getInput/setInput in RST reader.fiddlosopher
2007-02-15Use lookAhead parser for the "first pass" looking forfiddlosopher
2007-02-15Removed followedBy' parser from Text/ParserCombinators/Pandoc,fiddlosopher
2007-02-14Introduced a new map, reverseEntityTable, for lookupsfiddlosopher
2007-02-14Changed Entities.hs to use Data.Map rather thanfiddlosopher
2007-02-14Fixed issue #8: slow performance in parsing inline literals in fiddlosopher
2007-02-12Replaced "choice [(try (string ...), ...]" idiom withfiddlosopher
2007-02-12+ Added some needed "try"s before multicharacter parsers,fiddlosopher
2007-02-12Added 'try' in front of 'string', where needed, orfiddlosopher
2007-02-12Allow the URI in a RST hyperlink target to start on the linefiddlosopher
2007-01-31Use "gaps" in copyrightMessage string for cleaner code formatting.fiddlosopher
2007-01-28Changed 'encodeEntities' to 'escapeSGMLString'.fiddlosopher
2007-01-28+ Simplified entity handling by removing stringToSGML from Entities.hs.fiddlosopher
2007-01-27Use encodeEntities rather than stringToSGML for contents offiddlosopher