aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2017-03-04Stylish-haskell automatic formatting changes.John MacFarlane1-49/+49
2017-03-02Markdown reader: when splitting pipe table cells, skip tex math.John MacFarlane1-1/+1
2017-02-17Markdown reader: Use logMessage instead of report.John MacFarlane1-5/+7
2017-02-11Use new warnings throughout the code base.John MacFarlane1-14/+11
2017-02-10Added Text.Pandoc.Logging (exported module).John MacFarlane1-0/+1
2017-02-06Removed --parse-raw and readerParseRaw.John MacFarlane1-4/+0
2017-01-27Shared: rename compactify', compactify'DL -> compactify, compactifyDL.John MacFarlane1-4/+4
2017-01-25More logging-related changes.John MacFarlane1-7/+3
2017-01-25Changes to verbosity in writer and reader options.John MacFarlane1-1/+1
2017-01-25Removed readerSmart and the --smart option; added Ext_smart extension.John MacFarlane1-3/+3
2017-01-25Make Extensions a custom type instead of a Set Extension.John MacFarlane1-9/+9
2017-01-25Markdown reader: Removed readMarkdownWithWarnings [API change].John MacFarlane1-10/+1
2017-01-25Have warningWithPos take a SourcePos rather than Maybe SourcePos.John MacFarlane1-5/+5
2017-01-25Class: rename addWarning[WithPos] to warning[WithPos].John MacFarlane1-5/+5
2017-01-25Readers: pass errors straight up to PandocMonad.Jesse Rosenthal1-2/+1
2017-01-25Unify Errors.Jesse Rosenthal1-1/+2
2017-01-25Working on readers.Jesse Rosenthal1-221/+257
2017-01-08Fixed -f markdown_github-hard_line_breaks+escaped_line_breaks.John MacFarlane1-0/+1
2016-12-24markdown reader: disallow space between inline code and attributes (#3326)Mauro Bieg1-2/+2
2016-11-16Small caps in Bracketed Spans (#3191)ickc1-1/+7
2016-11-15Allow alignments to be specified in Markdown grid tables.John MacFarlane1-17/+23
2016-11-05Markdown reader: Allow reference link labels starting with @...John MacFarlane1-1/+2
2016-10-26Markdown Reader: add attributes for autolink (#3183)Daniele D'Orazio1-1/+3
2016-10-22Added `angle_brackets_escapable` extension.John MacFarlane1-0/+2
2016-10-13Parse line-oriented markup as LineBlockAlbert Krewinkel1-2/+2
2016-09-28Markdown reader: added bracket syntax for native spans.John MacFarlane1-0/+8
2016-09-02Remove Compat.MonoidJesse Rosenthal1-1/+1
2016-04-10Markdown reader: Fix pandoc title blocks with lines ending in 2 spaces.John MacFarlane1-19/+23
2016-03-09Markdown reader: Improved pipe table parsing.John MacFarlane1-15/+15
2016-03-09Markdown reader: Clean up pipe table parsing.John MacFarlane1-8/+8
2016-03-09Markdown reader: allow `+` separators in pipe table cells.John MacFarlane1-6/+4
2016-03-09Markdown reader: don't cross line boundary parsing pipe table row.John MacFarlane1-1/+7
2016-02-21Markdown reader: use htmlInBalanced for rawVerbatimBlock.John MacFarlane1-7/+5
2016-02-04Markdown reader: Fixed bug with smart quotes around tex math.John MacFarlane1-2/+2
2016-01-07Markdown reader: renormalize table column widths if they exceed 100%.John MacFarlane1-1/+6
2015-12-19Markdown reader: fixed parsing bug with macros.John MacFarlane1-1/+1
2015-12-12Implemented `east_asian_line_breaks` extension.John MacFarlane1-1/+15
2015-12-11Implemented SoftBreak and new `--wrap` option.John MacFarlane1-1/+1
2015-12-11Markdown reader: parse soft break as SoftBreak.John MacFarlane1-1/+1
2015-12-03Markdown reader: Improved pipe table relative widths.John MacFarlane1-4/+4
2015-11-24Allow pipe tables with no body rows.John MacFarlane1-2/+3
2015-11-19Renamed link attribute extensions.John MacFarlane1-4/+4
2015-11-19Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into mb...John MacFarlane1-26/+31
2015-11-13Added `emoji` extension to Markdown.John MacFarlane1-0/+17
2015-11-09Restored Text.Pandoc.Compat.Monoid.John MacFarlane1-0/+1
2015-11-09Revert "Use -XNoImplicitPrelude and 'import Prelude' explicitly."John MacFarlane1-1/+0
2015-11-08Use -XNoImplicitPrelude and 'import Prelude' explicitly.John MacFarlane1-0/+1
2015-10-30Pipe tables with long lines now get relative cell widths.John MacFarlane1-13/+20
2015-10-26Markdown reader: improved parser for `mmd_title_block`.John MacFarlane1-9/+8
2015-10-14Use custom Prelude to avoid compiler warnings.John MacFarlane1-3/+1