aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Textile.hs
AgeCommit message (Expand)AuthorFilesLines
2015-04-26Updated copyright notices to -2015. Closes #2111.John MacFarlane1-2/+2
2015-02-18Change return type of Textile readerMatthew Pickering1-1/+2
2015-02-02Textile reader: table improvements.John MacFarlane1-16/+14
2014-08-11Textile reader: list and HTML block parsing improvements.John MacFarlane1-16/+13
2014-08-08Textile reader: fixed list parsing bug. Closes #1500.John MacFarlane1-5/+16
2014-08-08Textile reader: don't allow inline formatting to extend over newline.John MacFarlane1-1/+2
2014-05-09Update copyright notices for 2014, add missing noticesAlbert Krewinkel1-2/+3
2014-05-07Small improvement to textile reader fix. Removed 'try'.mpickering1-1/+1
2014-05-07Fix textile reader hanging.mpickering1-1/+2
2014-05-06Textile reader: Rearranged inline parsers for performance.John MacFarlane1-4/+3
2014-05-06Textile reader: Rewrote simpleInline for clarity and efficiency.John MacFarlane1-15/+7
2014-05-06Textile reader: Disallow blank lines in inline contexts.John MacFarlane1-11/+20
2014-05-06Make `--trace` work with textile reader.John MacFarlane1-2/+12
2014-05-06Textile reader: Rewrote some inline parsing code for clarity.John MacFarlane1-12/+8
2014-04-07Textile reader: Improved link parsing.John MacFarlane1-19/+15
2014-04-05Textile reader: Better support for attributes.John MacFarlane1-9/+12
2014-04-05Textile reader: Improved treatment of HTML spans (%).John MacFarlane1-5/+1
2014-04-05Removed whitespace at ends of lines.John MacFarlane1-15/+15
2014-04-01Changed the smart punctuation parser to return Inlines rather than an Inline ...Matthew Pickering1-3/+1
2014-04-01Bugfix for #1175 and convert textile reader to use builder.Matthew Pickering1-134/+167
2013-12-19HLint: redundant parensHenry de Valence1-1/+1
2013-09-01Use registerHeader in Textile reader.John MacFarlane1-1/+3
2013-08-10Adjustments for new Format newtype.John MacFarlane1-3/+3
2013-08-08Revert "Textile reader: Removed raw LaTeX parsing."John MacFarlane1-0/+16
2013-08-07Textile reader: Removed raw LaTeX parsing.John MacFarlane1-16/+0
2013-07-25Textile reader: Improved handling of `<pre>` blocks.John MacFarlane1-4/+10
2013-06-24Use new flexible metadata type.John MacFarlane1-1/+1
2013-06-11Textile reader: Correctly handle entities.John MacFarlane1-1/+2
2013-02-16Textile reader: Handle attributes on headers.John MacFarlane1-15/+32
2013-01-09Added Attr field to Header.John MacFarlane1-2/+7
2012-11-06Textile reader/writer: Fixed autolinks.John MacFarlane1-11/+5
2012-11-06Textile parser: Expanded list of stringBreakers.John MacFarlane1-1/+1
2012-11-05Textile reader: Allow newlines before pipes in table.John MacFarlane1-1/+2
2012-10-13Textile reader: Fixed bug with list items containing line breaks.John MacFarlane1-9/+15
2012-10-05Textile reader: Implemented comment blocks.John MacFarlane1-0/+7
2012-09-28Textile reader: Avoid parsing dashes as strikeout.John MacFarlane1-1/+1
2012-09-28Textile reader: Fixed bug affected words ending in hyphen.John MacFarlane1-2/+5
2012-09-28Textile: Improvements to surround and symbol.John MacFarlane1-2/+2
2012-09-27Removed nullBlock.John MacFarlane1-1/+1
2012-09-06Textile reader: Improved speed of hyphenedWords.John MacFarlane1-4/+6
2012-09-06Removed obsolete comment.John MacFarlane1-1/+0
2012-09-06Fixed footnotes bug in textile.John MacFarlane1-2/+3
2012-07-26Fixed whitespace errors.John MacFarlane1-12/+12
2012-07-26Textile reader: Replace failIfStrict with guardEnabled.John MacFarlane1-3/+3
2012-07-25Changed reader parameters from ParserState to ReaderOptions.John MacFarlane1-8/+8
2012-07-25Moved stateOldDashes to readerOldDashes in ReaderOptions.John MacFarlane1-4/+6
2012-07-25Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane1-3/+3
2012-07-25Options -> ReaderOptions.John MacFarlane1-1/+1
2012-07-25Put smart, strict in separate options field in state.John MacFarlane1-1/+5
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-68/+68