aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
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
2015-09-25Markdown reader: handle 'id' and 'class' in parsing key/value attrs.John MacFarlane1-1/+5
2015-08-07Updated readers and writers for new image attribute parameter.John MacFarlane1-25/+30
2015-07-27Pipe tables: allow indented columns.John MacFarlane1-1/+3
2015-07-25Merge pull request #1689 from kuribas/masterJohn MacFarlane1-3/+9
2015-07-23Updated tests and removed a skipSpaces....John MacFarlane1-1/+0
2015-07-23Markdown Reader: Skip spaces in headersOphir Lifshitz1-0/+2
2015-07-14Markdown reader: don't allow bare URI links or autolinks in link label.John MacFarlane1-0/+2
2015-05-13Markdown reader: Made implicit header references case-insensitive.John MacFarlane1-11/+23
2015-05-13Fixed regression in charsInBalancedBrackets.John MacFarlane1-1/+2
2015-05-03Make sure a closing `</div>` doesn't get included in a defn list item.John MacFarlane1-0/+1
2015-04-26Fixed regression with lists inside defintiion lists.John MacFarlane1-1/+1
2015-04-26Updated copyright notices to -2015. Closes #2111.John MacFarlane1-2/+2
2015-04-19Rewrote charsInBalancedBrackets.John MacFarlane1-12/+15
2015-04-20MD Reader: Fix links/footnotets after citationsNikolay Yakimov1-2/+16
2015-04-18Revert "Merge pull request #1947 from mpickering/Fmonad"John MacFarlane1-326/+345
2015-04-18Markdown definition lists: don't require indent for first line.John MacFarlane1-2/+4
2015-04-18MD Reader: Smart `'` after inline mathNikolay Yakimov1-1/+2
2015-04-07Markdown Reader: eliminate common subexpressionsJulien Cretel1-2/+5
2015-03-28Merge branch 'errortype' of https://github.com/mpickering/pandoc into mpicker...John MacFarlane1-32/+40
2015-03-28Markdown Reader: Require nonempty value in mmd title blockNikolay Yakimov1-0/+1
2015-03-28Markdown Reader: Req. " " after key in mmd title blockNikolay Yakimov1-1/+4
2015-03-28Markdown Reader: Disable meta exts for meta valuesNikolay Yakimov1-1/+6
2015-03-23Allow pipe tables with header but no body.John MacFarlane1-1/+1
2015-03-23Fix accidently usage of list monad instanceMatthew Pickering1-1/+1
2015-03-22Add missing importMatthew Pickering1-1/+1
2015-03-22Factor out "returnState" into Parsing moduleMatthew Pickering1-8/+1