summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
...
| * | | | MD Reader: Test for smart `'` after inline mathNikolay Yakimov2015-04-18
| | | | |
* | | | | LaTeX template: redefine `\paragraph`, `\subparagraph`...John MacFarlane2015-04-17
|/ / / / | | | | | | | | | | | | to behave more like section headers. Closes #1658.
* / / / LaTeX template: include grffile together with graphicx.John MacFarlane2015-04-13
|/ / / | | | | | | | | | | | | This properly handles filenames containing spaces and dots. Closes #2074.
* | | Merge pull request #2072 from lierdakil/latex-reader-cleanupJohn MacFarlane2015-04-12
|\ \ \ | | | | | | | | LaTeX Reader: Code cleanup
| * | | LaTeX Reader: Test for `^^` character escapesNikolay Yakimov2015-04-13
| | | |
* | | | OpenDocument template: use `text:p` instead of `text:h` for title.John MacFarlane2015-04-12
| | | | | | | | | | | | | | | | | | | | Using `text:h` causes problems with numbering. Closes #2059. Thansk to @nkalvi for diagnosing this.
* | | | ODT Writer: Figure captions - Tests updateNikolay Yakimov2015-04-12
|/ / /
* | | RST writer: better handling of raw latex inline.John MacFarlane2015-04-07
| | | | | | | | | | | | | | | | | | | | | We use `` :raw-latex:`...` `` and add a definition for this role to the template. Closes #1961.
* | | Latex Reader: More tests for corner casesNikolay Yakimov2015-03-30
| | |
* | | Latex Reader: Test for para starting with latex macroNikolay Yakimov2015-03-30
| | |
* | | LaTeX Reader: check for block-level newcommand aliases in blockCommandNikolay Yakimov2015-03-30
| | |
* | | Merge branch 'master' of https://github.com/rootzlevel/pandoc into ↵John MacFarlane2015-03-28
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | rootzlevel-master Conflicts: src/Text/Pandoc/Readers/Org.hs
| * | | Org reader: Add test for image linksHans-Peter Deifel2015-02-26
| | | | | | | | | | | | | | | | | | | | Tests for image links with non-image targets, as introduced in commit 2ca5101.
* | | | Merge branch 'master' of github.com:jgm/pandocJohn MacFarlane2015-03-28
|\ \ \ \
| * | | | Fixed typo in lhs-test.html.John MacFarlane2015-03-28
| | | | |
* | | | | Merge branch 'mpickering-errortype'John MacFarlane2015-03-28
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵John MacFarlane2015-03-28
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mpickering-errortype Conflicts: benchmark/benchmark-pandoc.hs src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/Org.hs src/Text/Pandoc/Readers/RST.hs tests/Tests/Readers/LaTeX.hs
| | * | | | Update testsMatthew Pickering2015-02-18
| | | |/ / | | |/| |
* | / | | Fixed lhs writer tests (overflow-x, not x-overflow).John MacFarlane2015-03-28
|/ / / /
* | | | Updated tests for new highlighting-kate behavior.John MacFarlane2015-03-28
| | | |
* | | | Merge pull request #1968 from lierdakil/issue1607John MacFarlane2015-03-16
|\ \ \ \ | | | | | | | | | | Fixes for multiple docx writer style bugs.
| * | | | Docx Writer: Tables testNikolay Yakimov2015-03-08
| | | | |
| * | | | Lists testNikolay Yakimov2015-03-08
| | | | |
| * | | | Initial tests for writerNikolay Yakimov2015-03-03
| | |/ / | |/| |
* | | | AsciiDoc writer: avoid wrapping after list marker.John MacFarlane2015-03-15
| | | | | | | | | | | | | | | | Closes #1858.
* | | | AsciiDoc writer: insert some needed blank lines.John MacFarlane2015-03-15
| | | | | | | | | | | | | | | | Closes #1860.
* | | | Merge pull request #1989 from zudov/shortcut_ref_link_prJohn MacFarlane2015-03-15
|\ \ \ \ | | | | | | | | | | Support shortcut reference links in markdown writer
| * | | | Support shortcut reference links in markdown writerKonstantin Zudov2015-03-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #1977 Most markdown processors support the [shortcut format] for reference links. Pandoc's markdown reader parsed this shortcuts unoptionally. Pandoc's markdown writer (with --reference-links option) never shortcutted links. This commit adds an extension `shortcut_reference_links`. The extension is enabled by default for those markdown flavors that support reading shortcut reference links, namely: - pandoc - strict pandoc - github flavoured - PHPmarkdown If extension is enabled, reader parses the shortcuts in the same way as it preveously did. Otherwise it would parse them as normal text. If extension is enabled, writer outputs shortcut reference links unless doing so would cause problems (see test cases in `tests/Tests/Writers/Markdown.hs`).
* | | | | Org reader: add support for smart punctuationCraig S. Bosma2015-03-09
| | | | |
* | | | | LaTeX reader: allow non-empty colsep in tablesMathias Schenner2015-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `tabular` environment allows non-empty column separators with the "@{...}" syntax. Previously, pandoc would fail to parse tables if a non-empty colsep was present. With this commit, these separators are still ignored, but the table gets parsed. A test case is included.
* | | | | LaTeX reader: allow valign argument in tablesMathias Schenner2015-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `tabular` environment takes an optional parameter for vertical alignment. Previously, pandoc would fail to parse tables if this parameter was present. With this commit, the parameter is still ignored, but the table gets parsed. A test case is included.
* | | | | LaTeX reader: add some test cases for simple tablesMathias Schenner2015-03-08
| | | | |
* | | | | Fixed pipe tables -- headerless tables are not allowed.John MacFarlane2015-03-07
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GFM and PHP Markdown Extra pipe tables require headers. Previously pandoc allowed pipe tables not to include headers, and produced headerless pipe tables in Markdown output, but this was based on a misconception about pipe table syntax. This commit fixes this. Note: If you have been using headerless pipe tables, this may cause existing tables to break. Closes #1996.
* / / / Markdown writer: Avoid introducing spurious list items through wrapping.John MacFarlane2015-02-25
|/ / / | | | | | | | | | Closes #1946.
* | | Docx reader: add test for verbatim in sub/superscript.Jesse Rosenthal2015-02-21
| | |
* | | Docx reader: Add tests for new list style parsing.Jesse Rosenthal2015-02-19
|/ /
* | ICML writer: Better handling of raw blocks and inlines.John MacFarlane2015-02-17
| | | | | | | | | | | | | | | | Previously these were always escaped and printed verbatim. Now they are ignored unless the format is "icml", in which case they are passed through unescaped. Closes #1951.
* | Docx reader: test lists in table cells.Jesse Rosenthal2015-02-13
| |
* | Merge pull request #1927 from freephile/masterJohn MacFarlane2015-02-07
|\ \ | | | | | | update syntax for Images/Media files in MediaWiki
| * | update syntax for Images/Media files in MediaWikiGreg Rundlett2015-02-05
| | | | | | | | | The preferred syntax for Images and other media is [[File:Foo.jpg]] in MediaWiki since v1.14 (2008). [[Image:Foo.jpg]] is deprecated but still works as an alias to the File namespace.
* | | Merge branch 'patch/fixTexinfoWrap' of https://github.com/timtylin/scholdoc ↵John MacFarlane2015-02-07
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into timtylin-patch/fixTexinfoWrap Conflicts: src/Text/Pandoc/Writers/Texinfo.hs
| * | | Texinfo writer: fix wrapping by using breakable spacesTim Lin2015-02-06
| |/ /
* / / Append newline to the LineBreak of various writersTim Lin2015-02-04
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | This change improves output formatting of content with a large amount of force line breaks, such as line-blocks. The following writers are affected: * Dokuwiki * HTML * EPUB (via HTML) * LaTeX * MediaWiki * OpenDocument * Texinfo This commit resolves #1924
* | HTML writer: Add "inline" or "display" class to math spans.John MacFarlane2015-02-01
| | | | | | | | | | | | This allows inline and display math to be styled differently. Closes #1914.
* | Merge pull request #1885 from mb21/html-reader-tablesJohn MacFarlane2015-01-25
|\ \ | | | | | | fixes HTML Reader: tables
| * | fixes #1859 HTML Reader table parsingmb212015-01-25
| | |
* | | Docx Reader: Add test for VML images.Jesse Rosenthal2015-01-21
|/ / | | | | | | | | Since images are often visually (not structurally) placed on the page, people might not always get the results they're looking for here.
* | FB2 writer: Add newline to output.John MacFarlane2014-12-15
| |
* | HTML writer: put newline btw img and caption paragraph.John MacFarlane2014-12-15
| |
* | Don't treat a citation as a reference link label.John MacFarlane2014-12-15
| | | | | | | | Closes #1763.