aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Markdown.hs
AgeCommit message (Expand)AuthorFilesLines
2012-08-02Made markdown writer sensitive to Ext_subscript/superscript/strikeout.John MacFarlane1-3/+9
2012-08-02Made markdown writer sensitive to Ext_definition_lists.John MacFarlane1-8/+13
2012-08-02Made markdown writer sensitive to Ext_startnum, Ext_fancy_lists.John MacFarlane1-1/+5
2012-08-02Made markdown reader sensitive to Ext_raw_tex.John MacFarlane1-2/+3
2012-08-02Made markdown writer sensitive to Ext_table_captions.John MacFarlane1-1/+1
2012-08-02Made markdown writer sensitive to Ext_pandoc_title_blocks.John MacFarlane1-1/+2
2012-08-02Made markdown writer sensitive to Ext_footnotes.John MacFarlane1-4/+10
2012-07-27Replaced writerStrict with writerExtensions in WriterOptions.John MacFarlane1-16/+20
2012-07-26Moved WriterOptions and associated types Shared -> Options.John MacFarlane1-0/+1
2012-07-26Fixed whitespace errors.John MacFarlane1-20/+20
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-1/+1
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane1-2/+1
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane1-2/+2
2012-05-19Markdown Use a nonzero space to prevent false recognition of list marker.John MacFarlane1-1/+1
2012-05-16Markdown writer: Improved definition lists.John MacFarlane1-2/+2
2012-04-15Mardkown writer: escape < and $.John MacFarlane1-1/+1
2012-04-11Markdown writer: don't force delimited code blocks to be flush left.John MacFarlane1-1/+1
2012-04-03Markdown writer: don't replace empty alt in image with "image".John MacFarlane1-3/+3
2012-02-08Don't wrap headers in markdown or rst.John MacFarlane1-1/+2
2012-01-31Don't let autolinks create reference links.John MacFarlane1-1/+1
2012-01-27Finished implementing --atx-headers in markdown writer.John MacFarlane1-2/+5
2011-12-27Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings.John MacFarlane1-4/+0
2011-12-02Shared: Removed unescapeURI, modified escapeURI.John MacFarlane1-2/+1
2011-11-24Markdown writer: Use setext headers for levels 1-2.John MacFarlane1-11/+9
2011-06-06Markdown writer: Insert HTML comment btw list and indented code block.John MacFarlane1-1/+13
2011-01-26Add support for attributes in inline Code.John MacFarlane1-20/+28
2011-01-26Adjusted writers to use "tex".John MacFarlane1-2/+3
2011-01-26Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane1-9/+11
2011-01-20Markdown writer: Avoid printing excess spaces at end if no notes/refs.John MacFarlane1-1/+2
2011-01-06Markdown writer: blank line after delimited code block.John MacFarlane1-2/+2
2010-12-26Markdown writer: Fixed bug in Image.John MacFarlane1-1/+1
2010-12-24Use functions from Text.Pandoc.Generic instead of processWith(M).John MacFarlane1-3/+4
2010-12-20Markdown writer: use \ for newline instead of two spaces at eol.John MacFarlane1-1/+4
2010-12-20Markdown writer: Use delimited code block if there are attributes.John MacFarlane1-2/+21
2010-12-20Plain writer: set stateStrictMarkdown automatically.John MacFarlane1-3/+4
2010-12-17Added new prettyprinting module.John MacFarlane1-135/+157
2010-12-13Added option to write citation markup in markdown writer.Nathan Gass1-1/+29
2010-07-20Made spacing at end of output more consistent.John MacFarlane1-1/+1
2010-07-11Merge branch 'atlists'. Added auto-numbered example lists.John MacFarlane1-3/+3
2010-07-06Allow language-neutral table captions.John MacFarlane1-1/+1
2010-07-05Moved parsing functions from Text.Pandoc.Shared to new module.John MacFarlane1-1/+2
2010-06-30Use unicode for smart punctuation in plain, markdown, rst formats.John MacFarlane1-6/+6
2010-05-08Made KeyTable a map instead of an association list.John MacFarlane1-4/+4
2010-03-27Implemented @ for sequentially numbered examples.John MacFarlane1-3/+3
2010-03-23Markdown, RST writers: unescape URI in links, to make them readable.John MacFarlane1-2/+3
2010-03-23Updated copyright notices.John MacFarlane1-2/+2
2010-03-18Added plain writer.fiddlosopher1-21/+67
2010-03-13Use template variables for include-before/after.fiddlosopher1-7/+1
2010-03-10Markdown writer: proper support for headerless tables.fiddlosopher1-4/+12
2010-03-07Markdown writer: Fixed citations.fiddlosopher1-7/+1