summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
* Dokuwiki writer: Add a test for multiblock table cells.Jesse Rosenthal2014-08-30
| | | | | We have to add a new file, because the original table tests don't look for this.
* Merge pull request #1574 from jlduran/latex-horizontal-ruleJohn MacFarlane2014-08-29
|\ | | | | LaTeX writer: Make Horizontal Rules more flexible
| * LaTeX writer: Make Horizontal Rules more flexibleJose Luis Duran2014-08-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, pandoc has hard-coded the following in order to make horizontal rules in LaTeX: ```hs "\\begin{center}\\rule{3in}{0.4pt}\\end{center}" ``` Which is fine, but does not allow customizations. It also does not take into consideration the current line width. I'm proposing this change: ```diff @@ In Writers/LaTeX.hs: -"\\begin{center}\\rule{3in}{0.4pt}\\end{center}" +"\\begin{center}\\rule{0.5\\linewidth}{\\linethickness}\\end{center}" ```
* | Merge branch 'ugly-tables' of https://github.com/jlduran/pandoc into ↵John MacFarlane2014-08-29
|\ \ | | | | | | | | | jlduran-ugly-tables
| * | LaTeX writer: Add `\strut` to fix multiline tablesJose Luis Duran2014-08-29
| | | | | | | | | | | | See: http://tex.stackexchange.com/questions/34971
| * | LaTeX writer: Fix tablesJose Luis Duran2014-08-28
| |/ | | | | | | | | | | | | | | | | | | | | | | - [x] Fix a bug introduced in 66378062b622b0815a1a2ddce5d557e3ad13330c, which causes the table caption to repeat across all pages - [x] Address the issues discussed [here](https://groups.google.com/forum/#!msg/pandoc-discuss/qMu6_5lYy0o/ZAU7lzAIKw0J) regarding the extra vertical space. - [ ] NOTE: This will cause multiline table cells to appear unpadded. See http://tex.stackexchange.com/questions/34971 - [x] Use [`\tabularnewline`](http://tex.stackexchange.com/questions/78796) instead of `\\`.
* / Docx reader: update tests for new table behavior.Jesse Rosenthal2014-08-28
|/
* Merge pull request #1553 from mpickering/masterJohn MacFarlane2014-08-21
|\ | | | | Txt2Tags reader: Header is now parsed only if standalone flag is set
| * Txt2Tags Reader: Parse Meta informationmpickering2014-08-21
| | | | | | | | | | The header is now parsed as meta information. The first line is the `title`, the second is the `author` and third line is the `date`.
| * Txt2Tags reader: Header is now parsed only if standalone flag is setmpickering2014-08-20
| |
* | More test updates.John MacFarlane2014-08-20
| |
* | Updated tests.John MacFarlane2014-08-20
|/
* HTML reader: Parse appropriately styled span as SmallCaps.John MacFarlane2014-08-16
|
* Docx reader: Test for character styles.Jesse Rosenthal2014-08-16
|
* Markdown reader: Better handle quote characters in inline links.John MacFarlane2014-08-14
| | | | | | | | This was previously failing to be recognized as a link: [Test](http://en.wikipedia.org/wiki/Ward's_method) Closes #1534.
* Make `raw_tex` extension non-default for textile reader, writer.John MacFarlane2014-08-14
| | | | | | Enable `raw_tex` extension in textile writer. Closes #1532.
* Old tests: better path for test program.John MacFarlane2014-08-13
|
* Make options work with test-pandoc.John MacFarlane2014-08-13
|
* Revised tests directory.John MacFarlane2014-08-13
| | | | | | | | | Renamed some tests, introducing subsidiary directories for fb2, docx, epub. Cleaned up tests in cabal file. Combined dokuwiki-writer and dokuwiki_inline_formatting tests.
* Removed special testHook from Setup.John MacFarlane2014-08-13
| | | | | | | | | This was just too fragile and dependent on a changing Cabal API (see #1526). Instead of passing the bulid directory to the test program, we now let the test program find itself (using executable-path) and then find the pandoc executable relative to itself.
* Merge pull request #1528 from mpickering/epubtitlepageJohn MacFarlane2014-08-12
|\ | | | | EPUB Reader: Ignores titlepage attribute
| * EPUB Tests: Added wasteland testMatthew Pickering2014-08-13
| | | | | | | | | | This epub contains many epub:type elements including footnotes and titlepage.
* | HTML writer: use 'uri' or 'email' class for autolinks.John MacFarlane2014-08-12
| | | | | | | | | | | | This allows them to be styled specially. Closes #1501.
* | Added mathml tests for docbook reader.John MacFarlane2014-08-12
| |
* | Markdown reader: Improved parsing of indented code in list items.John MacFarlane2014-08-12
|/ | | | | | | | Indented code at the beginning of a list item must be indented eight spaces from the margin (or from the edge of the container), or four spaces past the list marker, whichever is farther. Some examples in `tests/markdown-reader-more.txt`.
* Docx reader: combine inlines properly in dropcaps.Jesse Rosenthal2014-08-11
| | | | | Make sure that adjacent inlines are combined properly in dropcaps. This updates the test results as well.
* Docx: Add dropcap tests.Jesse Rosenthal2014-08-11
|
* Merge pull request #1521 from jkr/emptyEmphJohn MacFarlane2014-08-11
|\ | | | | Discard empty formatters
| * Docx reader test: Add an emphasized space to normalize test.Jesse Rosenthal2014-08-11
| | | | | | | | | | This should be ignored, so the output should be the same as the previous test.
* | 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.
* Docx Parse: Updated testsMatthew Pickering2014-08-11
|
* Improved EPUB TestsMatthew Pickering2014-08-10
| | | | | | | | | | | | | Rewrote features test to remove all unimplemented features. There are now all three examples of where an image can be included in the test. 1. Cover image 2. As a spine elemnt 3. In the document Tests have also been added to make sure that the mediabag contains all these images after processing.
* Removed OMath module, depend on texmath >= 0.8.John MacFarlane2014-08-10
|
* Docx Tests: Updated for reading sym elementMatthew Pickering2014-08-09
|
* Added test for sym elementMatthew Pickering2014-08-09
|
* Updated EPUB testsMatthew Pickering2014-08-09
|
* Merge branch 'newbranch' of https://github.com/mpickering/pandoc into ↵John MacFarlane2014-08-08
|\ | | | | | | | | | | | | mpickering-newbranch Conflicts: src/Text/Pandoc/Readers/EPUB.hs
| * Added tests for collapseFilePathMatthew Pickering2014-08-08
| |
* | Plain writer: Use ALL CAPS for level 1 headers.John MacFarlane2014-08-08
|/
* Markdown writer: Respect -raw_html.John MacFarlane2014-08-08
| | | | | | | pandoc -t markdown-raw_html should not emit any raw HTML, even span and div tags that go with pandoc Span and Div elements. Cleaned up a bit of the logic with extensions and plain.
* Textile reader: fixed list parsing bug. Closes #1500.John MacFarlane2014-08-08
|
* EPUB test renaming.John MacFarlane2014-08-07
| | | | | | | | | Renamed epub test files so they're identified more clearly as epub: features.{epub,native} -> epub.features.{epub,native}, and similarly with formatting.{epub,native}. Added epub test files to cabal file, so they'll be included in the tarball.
* HTML reader: Really ignore DOCTYPE and xml declarations.John MacFarlane2014-08-07
| | | | | | | This actually does what d71b013841f3c9c8c595591e312a31df16a728cb said it did. Revised epub tests to remove the repeated DOCTYPE and xml tags.
* Merge pull request #1488 from mpickering/epubfixesJohn MacFarlane2014-08-07
|\ | | | | EPUB Reader: Improved image extraction
| * EPUB tests: Updated test fileMatthew Pickering2014-08-07
| |
* | Docx reader: Test inline image code.Jesse Rosenthal2014-08-07
|/
* Merge branch 'epubend' of https://github.com/mpickering/pandoc into ↵John MacFarlane2014-08-04
|\ | | | | | | | | | | | | mpickering-epubend Conflicts: pandoc.cabal
| * EPUB Reader: Added testsMatthew Pickering2014-07-31
| |
* | Correctly implement capitalisation.Artyom Kazak2014-08-03
| | | | | | | | | | | | | | | | Using `map toUpper` to capitalise text is wrong, as e.g. “Straße” should be converted to “STRASSE”, which is 1 character longer. This commit adds a `capitalize` function and replaces 2 identical implementations in different modules (`toCaps` and `capitalize`) with it.
* | Merge branch 'underline-option' of https://github.com/jkr/pandocJohn MacFarlane2014-07-31
|\ \