Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-07 | RST writer: better handling of raw latex inline. | John MacFarlane | 1 | -1/+5 | |
We use `` :raw-latex:`...` `` and add a definition for this role to the template. Closes #1961. | |||||
2015-03-30 | Latex Reader: More tests for corner cases | Nikolay Yakimov | 2 | -1/+9 | |
2015-03-30 | Latex Reader: Test for para starting with latex macro | Nikolay Yakimov | 2 | -1/+6 | |
2015-03-30 | LaTeX Reader: check for block-level newcommand aliases in blockCommand | Nikolay Yakimov | 2 | -1/+24 | |
2015-03-28 | Merge branch 'master' of https://github.com/rootzlevel/pandoc into ↵ | John MacFarlane | 1 | -0/+4 | |
rootzlevel-master Conflicts: src/Text/Pandoc/Readers/Org.hs | |||||
2015-03-28 | Merge branch 'master' of github.com:jgm/pandoc | John MacFarlane | 1 | -1/+0 | |
2015-03-28 | Fixed typo in lhs-test.html. | John MacFarlane | 1 | -1/+0 | |
2015-03-28 | Merge branch 'mpickering-errortype' | John MacFarlane | 9 | -19/+28 | |
2015-03-28 | Fixed lhs writer tests (overflow-x, not x-overflow). | John MacFarlane | 2 | -2/+2 | |
2015-03-28 | Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵ | John MacFarlane | 9 | -19/+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 | |||||
2015-03-28 | Updated tests for new highlighting-kate behavior. | John MacFarlane | 2 | -4/+7 | |
2015-03-16 | Merge pull request #1968 from lierdakil/issue1607 | John MacFarlane | 10 | -0/+162 | |
Fixes for multiple docx writer style bugs. | |||||
2015-03-15 | AsciiDoc writer: avoid wrapping after list marker. | John MacFarlane | 1 | -1/+1 | |
Closes #1858. | |||||
2015-03-15 | AsciiDoc writer: insert some needed blank lines. | John MacFarlane | 1 | -0/+5 | |
Closes #1860. | |||||
2015-03-15 | Merge pull request #1989 from zudov/shortcut_ref_link_pr | John MacFarlane | 1 | -1/+90 | |
Support shortcut reference links in markdown writer | |||||
2015-03-10 | Support shortcut reference links in markdown writer | Konstantin Zudov | 1 | -1/+90 | |
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`). | |||||
2015-03-09 | Org reader: add support for smart punctuation | Craig S. Bosma | 1 | -0/+24 | |
2015-03-08 | LaTeX reader: allow non-empty colsep in tables | Mathias Schenner | 1 | -0/+5 | |
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. | |||||
2015-03-08 | LaTeX reader: allow valign argument in tables | Mathias Schenner | 1 | -0/+3 | |
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. | |||||
2015-03-08 | LaTeX reader: add some test cases for simple tables | Mathias Schenner | 1 | -0/+31 | |
2015-03-08 | Docx Writer: Tables test | Nikolay Yakimov | 1 | -6/+6 | |
2015-03-08 | Lists test | Nikolay Yakimov | 2 | -4/+21 | |
2015-03-07 | Fixed pipe tables -- headerless tables are not allowed. | John MacFarlane | 1 | -1/+3 | |
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. | |||||
2015-03-03 | Initial tests for writer | Nikolay Yakimov | 9 | -0/+145 | |
2015-02-26 | Org reader: Add test for image links | Hans-Peter Deifel | 1 | -0/+4 | |
Tests for image links with non-image targets, as introduced in commit 2ca5101. | |||||
2015-02-25 | Markdown writer: Avoid introducing spurious list items through wrapping. | John MacFarlane | 5 | -7/+15 | |
Closes #1946. | |||||
2015-02-21 | Docx reader: add test for verbatim in sub/superscript. | Jesse Rosenthal | 3 | -0/+12 | |
2015-02-19 | Docx reader: Add tests for new list style parsing. | Jesse Rosenthal | 3 | -0/+10 | |
2015-02-18 | Update tests | Matthew Pickering | 8 | -15/+23 | |
2015-02-17 | ICML writer: Better handling of raw blocks and inlines. | John MacFarlane | 1 | -132/+1 | |
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. | |||||
2015-02-13 | Docx reader: test lists in table cells. | Jesse Rosenthal | 3 | -0/+15 | |
2015-02-07 | Merge pull request #1927 from freephile/master | John MacFarlane | 1 | -2/+2 | |
update syntax for Images/Media files in MediaWiki | |||||
2015-02-07 | Merge branch 'patch/fixTexinfoWrap' of https://github.com/timtylin/scholdoc ↵ | John MacFarlane | 1 | -12/+31 | |
into timtylin-patch/fixTexinfoWrap Conflicts: src/Text/Pandoc/Writers/Texinfo.hs | |||||
2015-02-06 | Texinfo writer: fix wrapping by using breakable spaces | Tim Lin | 1 | -12/+31 | |
2015-02-05 | update syntax for Images/Media files in MediaWiki | Greg Rundlett | 1 | -2/+2 | |
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. | |||||
2015-02-04 | Append newline to the LineBreak of various writers | Tim Lin | 7 | -7/+14 | |
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 | |||||
2015-02-01 | HTML writer: Add "inline" or "display" class to math spans. | John MacFarlane | 4 | -10/+10 | |
This allows inline and display math to be styled differently. Closes #1914. | |||||
2015-01-25 | Merge pull request #1885 from mb21/html-reader-tables | John MacFarlane | 2 | -1/+375 | |
fixes HTML Reader: tables | |||||
2015-01-25 | fixes #1859 HTML Reader table parsing | mb21 | 2 | -1/+375 | |
2015-01-21 | Docx Reader: Add test for VML images. | Jesse Rosenthal | 3 | -0/+8 | |
Since images are often visually (not structurally) placed on the page, people might not always get the results they're looking for here. | |||||
2014-12-15 | FB2 writer: Add newline to output. | John MacFarlane | 1 | -1/+1 | |
2014-12-15 | HTML writer: put newline btw img and caption paragraph. | John MacFarlane | 1 | -1/+2 | |
2014-12-15 | Don't treat a citation as a reference link label. | John MacFarlane | 2 | -0/+9 | |
Closes #1763. | |||||
2014-12-15 | Improved texorpdfstring patch #1148. | John MacFarlane | 4 | -37/+31 | |
* Make LaTeX reader recognize texorpdfstring. * Don't use texorpdfstring unless it's actually needed. * Fix tests. | |||||
2014-12-15 | Merge branch 'use-texorpdfstring' of https://github.com/wilx/pandoc into ↵ | John MacFarlane | 4 | -35/+43 | |
wilx-use-texorpdfstring Conflicts: src/Text/Pandoc/Writers/LaTeX.hs tests/Tests/Writers/LaTeX.hs | |||||
2014-12-15 | Merge pull request #1805 from bergey/rst | John MacFarlane | 2 | -21/+40 | |
RST Reader - Improved Role Support | |||||
2014-12-14 | DocBook readers: Include id on section headers. | John MacFarlane | 1 | -32/+32 | |
Closes #1818. | |||||
2014-12-14 | Merge pull request #1813 from tarleb/file-links | John MacFarlane | 1 | -1/+8 | |
Org reader: properly handle links to `file:target` | |||||
2014-12-14 | Org reader: properly handle links to `file:target` | Albert Krewinkel | 1 | -1/+8 | |
Org links like `[[file:target][title]]` were not handled correctly, parsing the link target verbatim. The org reader is changed such that the leading `file:` is dropped from the link target. This is related to issues #756 and #1812. | |||||
2014-12-14 | Fixe autolinks with following punctuation. | John MacFarlane | 1 | -0/+5 | |
Closes #1811. The price of this is that autolinked bare URIs can no longer contain `>` characters, but this is not a big issue. |