aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2012-08-10Changed Ext_tex_math to Ext_tex_math_dollars.John MacFarlane1-2/+2
2012-08-10Markdown: Allow pipe tables created by emacs orgtbl-mode to work.John MacFarlane1-4/+8
2012-08-08Changes to literate haskell options.John MacFarlane1-1/+1
2012-08-07Markdown reader: Modified to use Builder from pandoc-types 1.10.*.John MacFarlane1-5/+3
2012-08-06Support hard_line_breaks markdown extension.John MacFarlane1-1/+2
2012-08-05Started making markdown table writer sensitive to options.John MacFarlane1-1/+1
2012-08-04Markdown reader: look for raw html/latex blocks before tables.John MacFarlane1-2/+2
2012-08-02Markdown reader: Import <> from Text.Pandoc.Builder.John MacFarlane1-2/+2
2012-08-02Made F a newtype, moved definitions to Parser.John MacFarlane1-20/+14
2012-08-01Improved implementation of pipe tables.John MacFarlane1-25/+14
2012-08-01Parsing: removed duplication of Key and Key'.John MacFarlane1-4/+4
2012-08-01Major rewrite of markdown reader.John MacFarlane1-390/+553
2012-07-27Markdown reader: Added sensitivity to Ext_example_lists.John MacFarlane1-1/+3
2012-07-27Markdown reader: Check fancy_lists and startnum extensions.John MacFarlane1-2/+6
2012-07-27Replaced writerStrict with writerExtensions in WriterOptions.John MacFarlane1-5/+7
2012-07-26Fixed whitespace errors.John MacFarlane1-31/+31
2012-07-26Use readerExtensions instead of readerStrict in readers.John MacFarlane1-84/+72
2012-07-25Changed reader parameters from ParserState to ReaderOptions.John MacFarlane1-3/+4
2012-07-25Moved stateApplyMacros, stateIndentedCodeClasses to ReaderOptions.John MacFarlane1-2/+2
2012-07-25stateCitations -> readerCitations.John MacFarlane1-2/+2
2012-07-25Moved stateTabStop to readerTabStop in ReaderOptions.John MacFarlane1-8/+5
2012-07-25Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane1-1/+3
2012-07-25Options -> ReaderOptions.John MacFarlane1-10/+10
2012-07-25Put smart, strict in separate options field in state.John MacFarlane1-10/+11
2012-07-24Don't require strict HTML blocks to begin at left margin.John MacFarlane1-3/+1
2012-07-24Small fix to fix: Allow blank lines btw table and caption.John MacFarlane1-0/+1
2012-07-24Fixed performance improvement to tables.John MacFarlane1-1/+1
2012-07-24More performance improvements on pipe tables.John MacFarlane1-2/+1
2012-07-24Refactored table parsers, captions now not part of core tableWith.John MacFarlane1-9/+15
2012-07-24Slight improvement to performance for pipe tables.John MacFarlane1-11/+16
2012-07-22Revised code for pipe tables.John MacFarlane1-5/+51
2012-07-22Merge pull request #510 from mytskine/markdown-extraJohn MacFarlane1-0/+5
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-134/+134
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane1-1/+0
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane1-137/+137
2012-06-04Markdown reader: Added cf. and cp. to list of likely abbreviations.John MacFarlane1-1/+1
2012-05-08Treat four or more `~` or `^` in an inline context as regular text.John MacFarlane1-3/+3
2012-04-13Markdown reader: Allow lists as list items.John MacFarlane1-6/+8
2012-04-12Markdown: don't recognize references inside delimited code blocks.John MacFarlane1-0/+1
2012-02-21Added support for markdown-extra tables in the markdown parserFrançois Gannaz1-0/+5
2012-02-08Improvements to markdown attributes syntax (on code blocks).John MacFarlane1-4/+5
2012-02-07Limit nesting of strong/emph.John MacFarlane1-2/+14
2012-02-05Removed module Text.Pandoc.CharacterReferences.John MacFarlane1-3/+3
2012-02-04Complete rewrite of LaTeX reader.John MacFarlane1-12/+9
2012-01-28Removed an unnecessary `many spaceChar`.John MacFarlane1-1/+1
2012-01-28Markdown reader: Fixed bug in code block attribute parser.John MacFarlane1-3/+4
2012-01-28Support github syntax for fenced code blocks.John MacFarlane1-10/+14
2012-01-27Fixed table parsing with wide or combining characters.John MacFarlane1-4/+4
2012-01-10Markdown reader: fixed bug in table/hrule parsing.John MacFarlane1-1/+1
2012-01-08Markdown reader: Allow links in image captions.John MacFarlane1-13/+10