aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
AgeCommit message (Expand)AuthorFilesLines
2009-06-25Allow continuation lines in line blocks.fiddlosopher1-4/+5
2009-06-03Improved LaTeX reader's coverage of math modes.fiddlosopher1-3/+7
2009-05-04RST reader: Allow explicit links with spaces in URL: `link <to this>`_fiddlosopher1-1/+1
2009-05-01Markdown reader: change ' ' to '\160' in abbreviations.fiddlosopher1-1/+2
2009-04-30Markdown reader: improved efficiency of abbreviation parsing.fiddlosopher1-29/+26
2009-04-29Made htmlComment parser more efficient.fiddlosopher1-1/+3
2009-04-29Improved efficiency of whitespace parser.fiddlosopher1-13/+8
2009-04-29Use more efficient skipNonindentSpaces instead of nonidentSpaces where possible.fiddlosopher1-7/+16
2009-04-29Took out unneeded 'try' in indentSpaces parser.fiddlosopher1-2/+2
2009-01-31Gobble space after Plain blocks containing only raw html inline.fiddlosopher1-1/+1
2009-01-24Moved all haskell source to src subdirectory.fiddlosopher5-0/+3632
2007-11-29Moved everything from src into the top-level directory.fiddlosopher4-2704/+0
2007-11-23Reverted changes in r1086 (implicit section header references).fiddlosopher1-93/+74
2007-11-22Improved and simplified setextHeader parser in markdown reader.fiddlosopher1-8/+8
2007-11-22Implemented implicit reference-style links to section headers in markdown.fiddlosopher1-75/+94
2007-11-15Fixed logic in markdown smart quote parsing:fiddlosopher1-11/+14
2007-11-15Fixed smart quote parsing in markdown reader so that unicodefiddlosopher1-6/+10
2007-11-10Fixed bug in LaTeX reader (pointed out by Mark Eli Kalderon):fiddlosopher1-1/+2
2007-11-03Reverted back to state as of r1062. The template haskell changesfiddlosopher4-0/+2696
2007-11-03Use template haskell to avoid the need for templates:fiddlosopher4-2696/+0
2007-10-29Fixed bug in parsing files that begin with blank lines.fiddlosopher2-3/+5
2007-10-28Modified specialChar in LaTeX reader so that '"'fiddlosopher1-1/+3
2007-10-13Improvements to RST reader:fiddlosopher1-31/+38
2007-10-11Fixed bug in RST reader: previously, code blocks had to befiddlosopher1-13/+8
2007-09-18Markdown reader: require space before title in links and references.fiddlosopher1-5/+2
2007-09-17Remove just one leading and one trailing newlinefiddlosopher1-3/+11
2007-09-17Changed parsing of code blocks in HTML reader:fiddlosopher1-7/+8
2007-09-15Simplified HTML attribute parsing (HTML reader).fiddlosopher1-10/+5
2007-09-14Fixed two bugs in HTML reader:fiddlosopher1-11/+4
2007-09-05Simplified parsing of reference keys and notes in markdown and RSTfiddlosopher2-33/+54
2007-09-02LaTeX command and environment names can't contain numbers.fiddlosopher1-4/+4
2007-09-01Skip notes parsing if running in strict mode. (This yields a nicefiddlosopher1-14/+16
2007-09-01Simplify autolink parsing code, using Network.URI to test forfiddlosopher1-25/+24
2007-09-01More perspicuous definition of nonindentSpaces.fiddlosopher1-1/+4
2007-09-01Removed unneeded 'try' in 'rawLine'.fiddlosopher1-1/+1
2007-09-01Combined linebreak and whitespace into a new whitespacefiddlosopher1-7/+6
2007-09-01Removed unnecessary 'try' in 'codeBlock'.fiddlosopher1-1/+1
2007-09-01Use lookAhead in parsers for setext headers andfiddlosopher1-1/+5
2007-08-31Don't require blank lines after code block. (It's sufficientfiddlosopher1-1/+1
2007-08-31Changed definition of 'emph': italics with '_' must not be followedfiddlosopher1-1/+1
2007-08-30Fixed bug in LaTeX reader, which wrongly assumed that thefiddlosopher1-1/+1
2007-08-29Cleaned up LaTeX reader.fiddlosopher1-24/+24
2007-08-29Removed unneeded try's in RST reader; also minor code cleanup.fiddlosopher1-23/+17
2007-08-29Efficiency improvements to RST reader (more than doubledfiddlosopher1-12/+9
2007-08-29Purely stylistic change.fiddlosopher1-1/+1
2007-08-29Removed unneeded 'try' in 'ellipses'.fiddlosopher1-2/+1
2007-08-29+ Fixed bug introduced into referenceTitle by previous changes.fiddlosopher1-5/+6
2007-08-29Fixed markdown inline code parsing so it better accords withfiddlosopher1-4/+6
2007-08-29Small change to referenceTitle: should end with line-end, not ')'.fiddlosopher1-2/+1
2007-08-29Split 'title' into 'linkTitle' and 'referenceTitle', since thefiddlosopher1-14/+19