aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2015-11-19Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into mb...John MacFarlane1-21/+30
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-15Use unicode super/subscripts for digits in plain output.John MacFarlane1-3/+14
2015-09-17Markdown writer: in TOC, add links to headers.John MacFarlane1-2/+5
2015-08-07Updated readers, writers and README for link attributemb211-22/+27
2015-08-07Updated readers and writers for new image attribute parameter.John MacFarlane1-4/+8
2015-06-27Removed unused import.John MacFarlane1-1/+0
2015-06-27Plain writer: don't use symbols for super/subscript.John MacFarlane1-14/+10
2015-04-26Updated copyright notices to -2015. Closes #2111.John MacFarlane1-2/+2
2015-04-18Markdown writer: improved escaping.John MacFarlane1-2/+3
2015-03-19Markdown writer: fixes for GHC 7.10.John MacFarlane1-3/+3
2015-03-15Merge pull request #1989 from zudov/shortcut_ref_link_prJohn MacFarlane1-29/+55
2015-03-10Support shortcut reference links in markdown writerKonstantin Zudov1-29/+55
2015-03-07Fixed pipe tables -- headerless tables are not allowed.John MacFarlane1-1/+6
2015-02-25Markdown writer: don't emit span tags if plain or raw HTML disabled.John MacFarlane1-5/+8
2015-02-25Define isRight since it's only in recent versions of Data.Either.John MacFarlane1-1/+4
2015-02-25Markdown writer: Avoid introducing spurious list items through wrapping.John MacFarlane1-12/+41
2015-01-05ghc 7.10.1 RC1 requires specifying the type of String literals https://ghc.ha...Mark Wright1-6/+6
2014-08-16Markdown writer: don't escape $, ^, ~ when extensions are deactivated.John MacFarlane1-5/+16
2014-08-08Plain writer: Use ALL CAPS for level 1 headers.John MacFarlane1-1/+4
2014-08-08Markdown writer: Respect -raw_html.John MacFarlane1-12/+14
2014-08-04Use `stripPrefix` where appropriate.Artyom Kazak1-2/+3
2014-08-03Correctly implement capitalisation.Artyom Kazak1-7/+3
2014-07-27Markdown writer: Separate adjacent lists of the same kind with comment.John MacFarlane1-3/+9
2014-07-27Markdown writer: More improvements to 'plain' output, updated tests.John MacFarlane1-21/+26
2014-07-27Markdown writer: Better 'plain' output.John MacFarlane1-83/+101
2014-07-27Markdown writer: Update definition lists.John MacFarlane1-2/+13
2014-07-21Markdown writer: Avoid wrapping that might start a list.John MacFarlane1-1/+5
2014-07-19Renamed readTeXMath' to avoid name conflict with texmath 0.6.7Matthew Pickering1-3/+3
2014-07-13Markdown writer: Use span with style for SmallCaps. (#1360)John MacFarlane1-1/+8
2014-07-13Markdown writer: use Span instead of (hackish) SmallCaps in plainify.John MacFarlane1-9/+10
2014-07-13Use renderTags' for all tag rendering.John MacFarlane1-2/+2
2014-07-11Markdown writer: don't use braced attributes for fenced code.John MacFarlane1-2/+2
2014-06-03Markdown writer: Prettier pipe tables.John MacFarlane1-8/+16
2014-05-09Update copyright notices for 2014, add missing noticesAlbert Krewinkel1-2/+2
2014-04-24Markdown writer: Use proper escapes to avoid unwanted lists.John MacFarlane1-11/+16
2014-03-30Markdown writer: Use longer backtick fences if needed.John MacFarlane1-1/+5
2013-12-19HLint: use `elem` and `notElem`Henry de Valence1-5/+6
2013-12-09Don't use tilde code blocks with braced attributes in gfm output.John MacFarlane1-9/+9
2013-11-30Markdown writer: Fix rendering of tight sublists.John MacFarlane1-1/+8
2013-11-06Don't print `<span>` tags in 'plain' output.John MacFarlane1-1/+4
2013-11-01TexMath: Export readTeXMath', which attends to display/inline.John MacFarlane1-3/+3
2013-10-16Use isURI instead of isAbsoluteURI.John MacFarlane1-2/+2
2013-09-19Markdown reader: small code improvement.John MacFarlane1-5/+5
2013-09-12Markdown writer: Print references if output is 'plain'.John MacFarlane1-1/+2
2013-09-06Markdown writer: Fixed bugs in YAML header output.John MacFarlane1-3/+3
2013-08-20Create Cite element even if no matching reference in the biblio.John MacFarlane1-14/+21
2013-08-18Adjusted writers and tests for change in parsing of div/span.John MacFarlane1-5/+12
2013-08-10Use walk, walkM in place of bottomUp, bottomUpM when possible.John MacFarlane1-4/+4