summaryrefslogtreecommitdiff
path: root/tests/textile-reader.native
Commit message (Collapse)AuthorAge
* 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
|
* Textile reader: Better support for attributes.John MacFarlane2014-04-05
| | | | | | | | | | Instead of being ignored, attributes are now parsed and included in Span inlines. The output will be a bit different from stock textile: e.g. for `*(foo)hi*`, we'll get `<em><span class="foo">hi</span></em>` instead of `<em class="foo">hi</em>`. But at least the data is not lost.
* Textile reader: Improved treatment of HTML spans (%).John MacFarlane2014-04-05
| | | | Closes #1115.
* 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.
* Use registerHeader in Textile reader.John MacFarlane2013-09-01
| | | | | | | This produces automatic header identifiers, unless `auto_identifiers` extension is disabled. Closes #967.
* Updated tests for latest pandoc-types changes.John MacFarlane2013-08-16
|
* Updated for removed unMeta, unFormat in pandoc-types.John MacFarlane2013-08-14
|
* Updated tests for new Format.John MacFarlane2013-08-10
|
* Textile reader: Improved handling of `<pre>` blocks.John MacFarlane2013-07-25
| | | | | | | | * Closed #927 (a bug in which `<pre>` in certain contexts was not recognized as a code block). * Remove internal HTML tags in code blocks, rather than printing them verbatim. * Parse attributes on `<pre>` tag for code blocks.
* Some test suite fixes for new metadata.John MacFarlane2013-06-25
|
* 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.
* Added Attr field to Header.John MacFarlane2013-01-09
| | | | | | | | | | Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers.
* 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
|
* Fixed footnotes bug in textile.John MacFarlane2012-09-06
| | | | | | | This affected notes occuring before punctuation, e.g. `foo[1].`. Closes #518.
* 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
|
* Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings.John MacFarlane2011-12-27
|
* Textile reader: Make it possible to have colons after links.Christoffer Sawicki2011-07-10
|
* Add support for attributes in inline Code.John MacFarlane2011-01-26
| | | | | | | | Additional related changes: * URLs in Code in autolinks now use class "url". * Require highlighting-kate 0.2.8.2, which omits the final <br/> tag, essential for inline code.
* Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane2011-01-26
| | | | | | | The old TeX, HtmlInline and RawHtml elements have been removed and replaced by generic RawInline and RawBlock elements. All modules updated to use the new raw elements.
* 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
|
* Make sure native output ends in newline with --standalone.John MacFarlane2011-01-21
|
* Updated tests for new native format.John MacFarlane2011-01-20
|
* textile redcloth definition listspaul.rivier2010-12-09
|
* Textile reader: better treatment of acronyms.John MacFarlane2010-12-09
| | | | | We now parse PBS(Public Broadcasting System) as if it were "PBS (Public Broadcasting System)".
* Textile reader: Implemented footnotes.John MacFarlane2010-12-08
|
* Moved smartPunctuation from Markdown to Parsing.John MacFarlane2010-12-07
| | | | | + Parameterized smartPunctuation on an inline parser. + Handle smartPunctuation in Textile reader.
* Textile reader: implemented acronyms, (tm), (r), (c).John MacFarlane2010-12-07
|
* Textile reader: added hrule parser.John MacFarlane2010-12-03
|
* Textile reader: drop leading, trailing newline in pre block.John MacFarlane2010-12-03
| | | | This is consistent with how the other readers work.
* Textile reader: updated test suite to include raw HTML.John MacFarlane2010-12-03
|
* 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