aboutsummaryrefslogtreecommitdiff
path: root/Text/Pandoc/Readers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2008-09-12Changed list parser so that only the starting list marker matters:fiddlosopher1-45/+34
2008-09-08Use Data.List's 'intercalate' instead of custom 'joinWithSep'.fiddlosopher1-6/+6
2008-09-06Changed Float to Double in definition of Table element.fiddlosopher1-3/+3
2008-08-13Support for display math; changed ASCIIMathML -> LaTeXMathML:fiddlosopher1-2/+9
2008-08-11Parse raw ConTeXt environments as TeX in markdown reader.fiddlosopher1-3/+22
2008-08-10Allow newline before URL in markdown link references. Resolves Issue #81.fiddlosopher1-6/+4
2008-08-06Small improvements to citation parsing in markdown reader.fiddlosopher1-4/+4
2008-08-05Allow parsing of multiline citations.fiddlosopher1-2/+2
2008-08-04Added support for Cite to Markdown reader, and conditional support for citepr...fiddlosopher1-2/+41
2008-07-23Markdown reader: Parse setext headers before atx headers.fiddlosopher1-1/+1
2008-07-15Fixed bug in Markdown parser: regular $s triggering math mode.fiddlosopher1-1/+2
2008-07-11Added type signatures and fixed other -Wall warnings in Markdown reader.fiddlosopher1-35/+182
2008-07-11Added a few more recognized abbreviations to 'abbrev' parser.fiddlosopher1-1/+2
2008-07-11In smart mode, use nonbreaking spaces after abbreviations in markdown parser.fiddlosopher1-2/+23
2008-07-11Treat '\ ' in (extended) markdown as nonbreaking space.fiddlosopher1-1/+4
2008-06-08Markdown smart typography: Em dashes no longer eat surrounding whitespace.fiddlosopher1-2/+1
2008-03-22The '--sanitize-html' option now examines URIs in markdown linksfiddlosopher1-5/+11
2008-02-09Factored codeBlock into separate codeBlockIndented and codeBlockDelimited.fiddlosopher1-5/+4
2008-02-09Use generic attributes type, not a string, for CodeBlocks.fiddlosopher1-11/+34
2008-02-09Fixed delimited code blocks: eat blank lines afterwards, and allow end linefiddlosopher1-1/+2
2008-02-09Added a needed try to {} attribute parser.fiddlosopher1-4/+4
2008-02-09Added support for multiple classes in delimited code block.fiddlosopher1-7/+8
2008-02-09Initial support for delimited code blocks in markdown reader.fiddlosopher1-1/+27
2008-02-09Modified readers for new parameter in CodeBlock.fiddlosopher1-1/+1
2008-01-08Changed copyright dates where appropriate to include 2008.fiddlosopher1-2/+2
2008-01-06Fixed markdown reader to handle "*hi **there***" as a strong nested in an emph.fiddlosopher1-2/+3
2008-01-06Markdown reader: Moved blockQuote parser before list parsers.fiddlosopher1-2/+2
2008-01-03Added optional HTML sanitization using a whitelist.fiddlosopher1-10/+7
2007-12-31Fixed bug in the markdown reader: HTML preceding a code blockfiddlosopher1-5/+12
2007-12-29Markdown reader: Make 'block' conditional on strictness state,fiddlosopher1-21/+27
2007-12-24Markdown: better handling of parentheses in URLs and quotation marks in titles.fiddlosopher1-8/+15
2007-12-24Modified markdown reader to disallow links within links. (Resolves Issue #35.)fiddlosopher1-22/+29
2007-12-24Improved handling of raw HTML in Markdown reader. (Resolves Issue #36.)fiddlosopher1-4/+12
2007-12-21Modified 'source' parser in Markdown reader to allow backslash escapes in URLs.fiddlosopher1-3/+4
2007-12-21Fixed handling of email addresses in markdown and reStructuredText.fiddlosopher1-15/+1
2007-12-08Removed support for "box-style" block quotes in markdown.fiddlosopher1-12/+2
2007-11-29Modified markdown reader for new Math block.fiddlosopher1-1/+1
2007-11-29Moved everything from src into the top-level directory.fiddlosopher1-0/+916
2007-11-28Removed Text directory. This is a remnant of an experimentfiddlosopher1-909/+0
2007-11-03Use template haskell to avoid the need for templates:fiddlosopher1-0/+909