aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
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
2013-08-08Preliminary support for new Div and Span elements in writers.John MacFarlane1-0/+3
2013-07-02Rename `Ext_yaml_title_block` -> `Ext_yaml_metadata_block`.John MacFarlane1-4/+4
2013-07-02Markdown writer: Changed condition for rendering title block.John MacFarlane1-4/+3
2013-07-02Write full metadata in MMD style title blocks.John MacFarlane1-7/+23
2013-07-01Markdown writer: Commas are okay in plain yaml scalars.John MacFarlane1-1/+1
2013-07-01Markdown writer: Render yaml title block fields in alpha order.John MacFarlane1-2/+3
2013-07-01Created Text.Pandoc.Writers.Shared, improved metaToJSON.John MacFarlane1-7/+5
2013-07-01Improvements to yaml title block writer.John MacFarlane1-24/+37
2013-07-01Revert "Markdown writer: Don't include variables in metadata."John MacFarlane1-41/+35