Age | Commit message (Expand) | Author | Files | Lines |
2008-07-23 | Markdown reader: Parse setext headers before atx headers. | fiddlosopher | 1 | -1/+1 |
2008-07-15 | Fixed bug in Markdown parser: regular $s triggering math mode. | fiddlosopher | 1 | -1/+2 |
2008-07-15 | Commented out some unneeded code in HTML reader. | fiddlosopher | 1 | -0/+4 |
2008-07-15 | Code cleanup - RST reader. | fiddlosopher | 1 | -23/+93 |
2008-07-15 | LaTeX reader - Code cleanup. | fiddlosopher | 1 | -16/+76 |
2008-07-14 | Code cleanup in LaTeX reader. | fiddlosopher | 1 | -14/+50 |
2008-07-13 | Code cleanup in TexMath reader. | fiddlosopher | 1 | -1/+14 |
2008-07-11 | Added type signatures and fixed other -Wall warnings in Markdown reader. | fiddlosopher | 1 | -35/+182 |
2008-07-11 | Added a few more recognized abbreviations to 'abbrev' parser. | fiddlosopher | 1 | -1/+2 |
2008-07-11 | In smart mode, use nonbreaking spaces after abbreviations in markdown parser. | fiddlosopher | 1 | -2/+23 |
2008-07-11 | Treat '\ ' in (extended) markdown as nonbreaking space. | fiddlosopher | 1 | -1/+4 |
2008-06-17 | Added type signatures, etc., to eliminate -Wall warnings. | fiddlosopher | 1 | -16/+86 |
2008-06-08 | Markdown smart typography: Em dashes no longer eat surrounding whitespace. | fiddlosopher | 1 | -2/+1 |
2008-04-20 | Count anything that isn't a known block (HTML) tag as an inline tag | fiddlosopher | 1 | -4/+4 |
2008-03-22 | The '--sanitize-html' option now examines URIs in markdown links | fiddlosopher | 2 | -13/+35 |
2008-02-09 | Factored codeBlock into separate codeBlockIndented and codeBlockDelimited. | fiddlosopher | 1 | -5/+4 |
2008-02-09 | Use generic attributes type, not a string, for CodeBlocks. | fiddlosopher | 4 | -15/+38 |
2008-02-09 | Fixed delimited code blocks: eat blank lines afterwards, and allow end line | fiddlosopher | 1 | -1/+2 |
2008-02-09 | Added a needed try to {} attribute parser. | fiddlosopher | 1 | -4/+4 |
2008-02-09 | Added support for multiple classes in delimited code block. | fiddlosopher | 1 | -7/+8 |
2008-02-09 | Initial support for delimited code blocks in markdown reader. | fiddlosopher | 1 | -1/+27 |
2008-02-09 | Modified readers for new parameter in CodeBlock. | fiddlosopher | 4 | -6/+6 |
2008-01-17 | Fixed bug in RST reader, which would choke on: "p. one\ntwo\n". | fiddlosopher | 1 | -2/+2 |
2008-01-16 | Removed unnecessary imports. | fiddlosopher | 2 | -5/+2 |
2008-01-08 | Changed copyright dates where appropriate to include 2008. | fiddlosopher | 4 | -8/+8 |
2008-01-08 | Changed comment used to replace unsafe HTML if sanitize-html option | fiddlosopher | 1 | -4/+4 |
2008-01-06 | RST reader: Fixed bug in parsing explicit links (resolves Issue #44). | fiddlosopher | 1 | -2/+3 |
2008-01-06 | RST reader: cleaned up parsing of reference names in key blocks and links. | fiddlosopher | 1 | -24/+25 |
2008-01-06 | RST reader: Removed unnecessary check for following link in str. | fiddlosopher | 1 | -2/+1 |
2008-01-06 | Fixed markdown reader to handle "*hi **there***" as a strong nested in an emph. | fiddlosopher | 1 | -2/+3 |
2008-01-06 | Markdown reader: Moved blockQuote parser before list parsers. | fiddlosopher | 1 | -2/+2 |
2008-01-03 | Added optional HTML sanitization using a whitelist. | fiddlosopher | 2 | -23/+87 |
2007-12-31 | Fixed bug in the markdown reader: HTML preceding a code block | fiddlosopher | 2 | -7/+13 |
2007-12-31 | HTML reader: Finished fixing Issue #40. | fiddlosopher | 1 | -2/+2 |
2007-12-31 | HTML reader: Don't interpret contents of style tags as markdown. | fiddlosopher | 1 | -2/+9 |
2007-12-30 | Fixed bug in HTML reader: it was looking for <IT> tag, not <I>. | fiddlosopher | 1 | -1/+1 |
2007-12-30 | Made LaTeX reader properly recognize --parse-raw in rawLaTeXInline. | fiddlosopher | 1 | -2/+4 |
2007-12-29 | Markdown reader: Make 'block' conditional on strictness state, | fiddlosopher | 1 | -21/+27 |
2007-12-24 | Markdown: better handling of parentheses in URLs and quotation marks in titles. | fiddlosopher | 1 | -8/+15 |
2007-12-24 | Modified markdown reader to disallow links within links. (Resolves Issue #35.) | fiddlosopher | 1 | -22/+29 |
2007-12-24 | Improved handling of raw HTML in Markdown reader. (Resolves Issue #36.) | fiddlosopher | 1 | -4/+12 |
2007-12-24 | Changed failure message in anyHtmlBlockTag (minor change). | fiddlosopher | 1 | -1/+1 |
2007-12-23 | Modified rawHtmlBlock in HTML reader so it parses </html> and </body> tags. | fiddlosopher | 1 | -2/+7 |
2007-12-21 | Modified 'source' parser in Markdown reader to allow backslash escapes in URLs. | fiddlosopher | 1 | -3/+4 |
2007-12-21 | Fixed handling of email addresses in markdown and reStructuredText. | fiddlosopher | 2 | -40/+1 |
2007-12-08 | Removed support for "box-style" block quotes in markdown. | fiddlosopher | 1 | -12/+2 |
2007-12-02 | Small fix to error handling in TeXMath parser: | fiddlosopher | 1 | -3/+3 |
2007-12-02 | TeXMath parser: use emphasis only for letters, not numbers. | fiddlosopher | 1 | -4/+8 |
2007-12-02 | Added Text.Pandoc.Readers.TeXMath and changed default handling of math. | fiddlosopher | 1 | -0/+218 |
2007-11-29 | Modified markdown reader for new Math block. | fiddlosopher | 1 | -1/+1 |