summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
...
* Updated mediawiki writer test for `<br />` change.John MacFarlane2012-10-04
|
* RST reader: Consolidate super/subscript, math into interpretedRole.John MacFarlane2012-09-30
|
* RST reader: Consolidated rawBlock into directive.John MacFarlane2012-09-30
|
* Renamed removedLeadingTrailingSpace to trim.John MacFarlane2012-09-29
| | | | | Also removeLeadingSpace to triml, removeTrailingSpace to trimr.
* RST reader: Consolidated math block parsers into directive.John MacFarlane2012-09-29
|
* RST reader: Use Text.Pandoc.Builder.John MacFarlane2012-09-27
| | | | | | This will give us more flexibility in the future. It also gives built-in normalization. Performance slightly better.
* RST reader: Support :target: on image substitutions.John MacFarlane2012-09-27
|
* RST reader: Support :target: on .. image:: blocks.John MacFarlane2012-09-26
| | | | Still not supported on substitution definitions.
* Removed need for utf8-string package.John MacFarlane2012-09-25
| | | | | | | | * Depend on text. * Expose Text.Pandoc.UTF8. * Text.Pandoc.UTF8 now exports toString, fromString, toStringLazy, fromStringLazy. * These are used instead of the old utf8-string functions.
* Texinfo writer: Fixed internal cross-references.John MacFarlane2012-09-24
| | | | | | | | | | | Now we insert anchors after each header, and use @ref instead of @uref for links. Commas are now escaped as @comma{} only when needed; previously all commas were escaped. (This change is needed, in part, because @ref commands must be followed by a real comma or period.) Also insert a blank line in from of @verbatim environments.
* Markdown reader: Fixed link parser to avoid exponential slowdowns.John MacFarlane2012-09-22
| | | | | | | | | | | | | | | | | | | | Previously the parser would hang on input like this: [[[[[[[[[[[[[[[[[[hi We fixed this by making the link parser parser characters between balanced brackets (skipping brackets in inline code spans), then parsing the result as an inline list. One change is that [hi *there]* bud](/url) is now no longer parsed as a link. But in this respect pandoc behaved differently from most other implementations anyway, so that seems okay. All current tests pass. Added test for this case. Closes #620.
* LaTeX reader: Added a 'try' in rawLaTeXBlock.John MacFarlane2012-09-22
| | | | | | | | This allows the markdown reader to treat '\begin' (not followed by an argument) as a raw string rather than erroring out when it doesn't find a '{'. Closes #622.
* Tests.Old: Set TMP to ".".John MacFarlane2012-09-21
| | | | | Otherwise TMP is unset and, on Windows, C:\Windows is used by default, leading to permission violations.
* LaTeX writer: Don't rely on the enumerate package.John MacFarlane2012-09-16
| | | | Instead, use standard LaTeX commands to change numbering style.
* LaTeX writer: Properly escape strings inside \url{}.John MacFarlane2012-09-16
| | | | Closes #576.
* Merge pull request #596 from dlax/rst-fieldlistsJohn MacFarlane2012-09-16
|\ | | | | improvements to rst reader for field lists
| * Fix RST reader for field lists items with body beginning after a new lineDenis Laxalde2012-08-29
| |
* | MediaWiki reader: Allow table in table cell.John MacFarlane2012-09-15
| |
* | LaTeX writer: don't escape _ in url.John MacFarlane2012-09-15
| |
* | LaTeX writer: Don't use \endhead with longtable.John MacFarlane2012-09-15
| | | | | | | | | | It causes the heading to be a different size form the body, sometimes.
* | Revised latex writer tests to use longtable.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Added test case for templates in list item.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Added test for ref.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Interpret width attribute on table columns.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Got alignments working.John MacFarlane2012-09-15
| | | | | | | | | | They only work on headers, because pandoc forces same alignment for all cells in a column.
* | MediaWiki reader: Misc fixes, put category links at end.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Parse styles after '{|' table start.John MacFarlane2012-09-15
| |
* | MediaWiki reader: Added test for multi-paragraph cells.John MacFarlane2012-09-14
| |
* | MediaWiki reader: Table improvements, added simple table tests.John MacFarlane2012-09-14
| |
* | MediaWiki reader: Images.John MacFarlane2012-09-13
| |
* | MediaWiki reader: internal links.John MacFarlane2012-09-13
| |
* | MediaWiki reader: Implemented basic internal links.John MacFarlane2012-09-13
| | | | | | | | Including word-ending links and the "pipe trick."
* | MediaWiki reader: Added tests for external mailto link.John MacFarlane2012-09-13
| |
* | MediaWiki reader: Implemented numbered external links.John MacFarlane2012-09-13
| |
* | MediaWiki reader: Support HTML lists.John MacFarlane2012-09-13
| |
* | MediaWiki reader: Handle templates, variables as raw mediawiki.John MacFarlane2012-09-13
| | | | | | | | Also check for column 1 in preformatted text.
* | MediaWiki reader: preformatted blocks and tests.John MacFarlane2012-09-12
| |
* | MediaWiki reader: Support `<math>` tag.John MacFarlane2012-09-12
| |
* | Added tests for mediawiki lists.John MacFarlane2012-09-12
| |
* | More mediawiki reader tests.John MacFarlane2012-09-12
| |
* | Added some tests for mediawiki reader.John MacFarlane2012-09-12
| |
* | Added basic mediawiki reader.John MacFarlane2012-09-12
| | | | | | | | | | Text.Pandoc.Readers.MediaWiki module, tests/mediawiki-reader.{txt,native}.
* | HTML writer: Improve line breaks with `<dd>` tags.John MacFarlane2012-09-12
| | | | | | | | | | We now put a newline between `</dd>` and `<dd>` when there are multiple definitions.
* | Fixed spacing in context writer test.John MacFarlane2012-09-08
| |
* | LaTeX reader: Support obeylines environment.John MacFarlane2012-09-06
| | | | | | | | Closes #604.
* | LaTeX reader: Use curly quotes for bare straight quotes.John MacFarlane2012-09-06
| |
* | 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
|
* Man writer: Escape - as \-.John MacFarlane2012-08-18
| | | | | | | | | | Unescaped -'s become hyphens, while \-'s are left as ascii minus signs. That is preferable for use with command-line options. See http://lintian.debian.org/tags/hyphen-used-as-minus-sign.html. Thanks to Andrea Bolognani for bringing the issue to our attention.
* Changes to literate haskell options.John MacFarlane2012-08-08
| | | | | | | | | | | - Removed writerLiterateHaskell from WriterOptions. - Removed readerLiterateHaskell from ReaderOptions. - Added Ext_literate_haskell to Extensions. Test for this instead of the above. - Removed failUnlessLHS from Shared. Note: At this point, +lhs and .lhs extension no longer has any effect. Need to fix.