summaryrefslogtreecommitdiff
path: root/tests/textile-reader.textile
Commit message (Collapse)AuthorAge
* Textile reader: disallow empty URL in explicit link.John MacFarlane2016-07-22
| | | | Closes #3036.
* Added test for extended code block in textile.John MacFarlane2016-07-22
| | | | Closes #3037.
* Textile reader: fixed attributes.John MacFarlane2016-06-23
| | | | | | | | | | | | | | Attributes can't be followed by a space. So, _(class)emph_ but _(noclass) emph_ Closes #2984.
* Textile reader: Support `>`, `<`, `=`, `<>` text alignment attributes.John MacFarlane2016-01-25
| | | | Closes #2674.
* Textile reader: don't allow block HTML tags in inline contexts.John MacFarlane2016-01-02
| | | | | | | | | | | | | | | | | | | | | The reader previously did allow this, following redcloth, which happily parses Html blocks can be <div>inlined</div> as well. as <p>Html blocks can be <div>inlined</div> as well.</p> This is invalid HTML, and this kind of thing can lead to parsing problems (stack overflows) as well. So this commit undoes this behavior. The above sample now produces; <p>Html blocks can be</p> <div> <p>inlined</p> </div> <p>as well.</p>
* Make `raw_tex` extension non-default for textile reader, writer.John MacFarlane2014-08-14
| | | | | | Enable `raw_tex` extension in textile writer. Closes #1532.
* Textile reader: list and HTML block parsing improvements.John MacFarlane2014-08-11
| | | | | | | | Closes #1513. Lists can now start without an intervening blank line. Also, html block-level tags that don't start a line are parsed as RawInline and don't interrupt paragraphs, as in RedCloth.
* Textile reader: fixed list parsing bug. Closes #1500.John MacFarlane2014-08-08
|
* Tests updated to reflect changes to readers.Matthew Pickering2014-04-01
| | | | | | Previously normalisation was handled by the `normalizeSpaces` function. The behavoir of the builder monoid is slightly different and melds together more items such as consecutive strings and spaces adjacent to line breaks. The tests have been changed to reflect this. All relevant tests passed when the string melding line of the builder monoid was commented out.
* Textile reader: Correctly handle entities.John MacFarlane2013-06-11
|
* Textile reader: Handle attributes on headers.John MacFarlane2013-02-16
| | | | Includes `[lang]`, `(class #id)`, `{color:red}` styles.
* Textile reader/writer: Fixed autolinks.John MacFarlane2012-11-06
| | | | | | | | | Previously the textile reader and writer incorrectly implented RST-style autolinks for URLs and email addresses. This has been fixed. Now an autolink is done this way: "$":http://myurl.com
* Textile reader: Fixed bug with list items containing line breaks.John MacFarlane2012-10-13
| | | | | | Now pandoc correctly handles hard line breaks inside list items. Previously they broke list parsing. Thanks to Pablo Rodríguez for pointing out the problem.
* Textile reader: Implemented comment blocks.John MacFarlane2012-10-05
|
* Added (failing) test case for #518.John MacFarlane2012-08-25
|
* Textile reader: properly handle links with surrounding brackets.John MacFarlane2012-07-13
| | | | | | | Square brackets need to be used when the link isn't surrounded by spaces or punctuation, or when the URL ending may be ambiguous. Closes #564.
* Textile reader: fix for `<notextile>` and `==`.paul.rivier2012-05-29
| | | | Closes #517.
* textile reader improvements : better conformance to RedCloth Textile inlinespaul.rivier2012-04-24
|
* Textile reader quick clean-up and added support for LaTeX blocks and inlines.paul.rivier2012-04-17
|
* Textile reader: Make it possible to have colons after links.Christoffer Sawicki2011-07-10
|
* Textile reader: Fixed bug (swallowed p at beginning of paragraph).John MacFarlane2011-01-23
| | | | | The problem was a missing 'try' in the maybeExplicitBlock parser. Test case, a paragraph beginning with 'p', has been added.
* Textile reader: Support <tt> for inline code.John MacFarlane2011-01-23
|
* Textile reader: Added code blocks with bc.John MacFarlane2011-01-23
|
* textile redcloth definition listspaul.rivier2010-12-09
|
* Textile reader: Implemented footnotes.John MacFarlane2010-12-08
|
* Textile reader: implemented acronyms, (tm), (r), (c).John MacFarlane2010-12-07
|
* punctuation handling, and more html-specific handlingpaul.rivier2010-12-03
|
* html inlines and html blocks handling in textile readerPaul Rivier2010-12-03
|
* textile reader now ignores html/css attributesPaul Rivier2010-12-03
|
* fix autolink by promoting it in the parser list, fix table parabreakPaul Rivier2010-12-03
|
* more support for Textile reader (explicit links, images), tests and cabal ↵Paul Rivier2010-12-03
entries