aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2007-10-29Fixed bug in parsing files that begin with blank lines.fiddlosopher1-2/+4
2007-09-18Markdown reader: require space before title in links and references.fiddlosopher1-5/+2
2007-09-05Simplified parsing of reference keys and notes in markdown and RSTfiddlosopher1-18/+30
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-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
2007-08-29Removed unneeded 'try' from noteMarker.fiddlosopher1-4/+1
2007-08-29Minor reformatting.fiddlosopher1-3/+2
2007-08-29Rewrote 'para' for greater efficiency.fiddlosopher1-6/+4
2007-08-28Rewrote link parsers for greater efficiency.fiddlosopher1-7/+4
2007-08-28Removed redundant 'referenceLink' in definition of inlinefiddlosopher1-1/+0
2007-08-28Refactored escapeChar so it doesn't need 'try'.fiddlosopher1-4/+4
2007-08-28Removed unneeded 'try' in multilineRow.fiddlosopher1-1/+1
2007-08-28Removed unneeded 'try' in dashedLine.fiddlosopher1-1/+1
2007-08-28Removed unneeded try in rawHtmlBlocks (Markdown parser).fiddlosopher1-2/+2
2007-08-28Refactored hrule for performance in Markdown reader.fiddlosopher1-5/+5
2007-08-28Minor reformatting.fiddlosopher1-2/+3
2007-08-28Refactored setext header parsing in Markdown reader for greaterfiddlosopher1-5/+3
2007-08-28More rearranging in definition of inline.fiddlosopher1-8/+8
2007-08-28More intelligent rearranging of 'inline' for speed boostsfiddlosopher1-3/+3
2007-08-28Changed definition of 'enclosed' in Text.Pandoc.Shared so thatfiddlosopher1-3/+3
2007-08-28Performance improvements:fiddlosopher1-13/+11
2007-08-26Don't countfiddlosopher1-0/+1
2007-08-23Added new rule for enhanced markdown ordered lists: if the list markerfiddlosopher1-6/+9
2007-08-22Added a needed 'try' to listItem in Markdown reader.fiddlosopher1-1/+1
2007-08-20Code cleanup in Markdown reader.fiddlosopher1-27/+18
2007-08-20Changes to Markdown reader for better conformity to thefiddlosopher1-6/+12
2007-08-19Refactor RST and Markdown readers using parseFromString.fiddlosopher1-16/+4
2007-08-18+ Fixed bug in markdown ordered list parsing. The problem wasfiddlosopher1-2/+3
2007-08-15Cosmetic changes.fiddlosopher1-4/+3
2007-08-15Major code cleanup in all modules. (Removed unneeded imports,fiddlosopher1-389/+273
2007-08-08Major change in the way ordered lists are handled:fiddlosopher1-16/+25
2007-07-28Changes to Markdown reader:fiddlosopher1-6/+7
2007-07-28Make URLs and emails in autolinks appear as Code.fiddlosopher1-2/+2
2007-07-23Renamed parseFromStr -> parseFromString.fiddlosopher1-3/+3
2007-07-22Removed an extra occurance of escapedChar in definitionfiddlosopher1-1/+0
2007-07-21+ Added support for Strikeout, Superscript, andfiddlosopher1-82/+64
2007-07-16Simplified inlinesInBalanced, using lookAhead.fiddlosopher1-5/+5