aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-12-08Merge pull request #1797 from bos/masterJohn MacFarlane3-2/+7
DocBook reader: add support for "classname", document and test "type"
2014-12-08DocBook reader: document/test "type" as implementedBryan O'Sullivan3-3/+3
2014-12-08Merge pull request #1795 from bos/masterJohn MacFarlane3-3/+30
DocBook reader: add support for calloutlist and callout
2014-12-08Fix test suiteBryan O'Sullivan1-1/+1
2014-12-08Merge pull request #1796 from bos/threadedJohn MacFarlane1-1/+1
Link the test suite using -threaded
2014-12-08DocBook reader: add support for classnameBryan O'Sullivan3-1/+6
2014-12-08Link the test suite using -threadedBryan O'Sullivan1-1/+1
This allows the test suite to be run using "+RTS -N". Doing so improves the performance of the test suite on my quad-core Mac laptop as follows: Before: 8.2 seconds After: 2.5 seconds
2014-12-08DocBook reader: add support for calloutlist and calloutBryan O'Sullivan3-3/+30
We treat a calloutlist as a bulleted list. This works well in practice.
2014-12-08Merge pull request #1746 from shelf/dw-ext-imagesMatthew Pickering5-2/+12
DokuWiki writer: fix external images
2014-12-08Merge pull request #1794 from mpickering/docxfixJohn MacFarlane1-2/+3
Fix for #1641 (docx table captions above tables)
2014-12-08Merge pull request #1646 from neongreen/issue1631Matthew Pickering1-0/+4
Add an -email address link- example to README.
2014-12-08Fix for #1641 (docx table captions above tables)Nikolay Yakimov1-2/+3
Word doesn't really treat table captions as something special. It's just a paragraph with special style, nothing more, so simple reversal of output order in writer works fine.
2014-12-07Updated INSTALL on building man pages.John MacFarlane1-6/+15
Closes #1788.
2014-12-07Merge pull request #1716 from lierdakil/issue1607-pullreqMatthew Pickering1-7/+35
First step to fixing internationalisation problems with docx output
2014-12-07Merge pull request #1790 from mpickering/masterJohn MacFarlane1-1/+1
Text.Pandoc.Pretty: Improve performance of realLength
2014-12-06Text.Pandoc.Pretty: Improve performance of realLengthMatthew Pickering1-1/+1
Eliminates memory usage and twofold increase in speed.
2014-12-06Merge pull request #1787 from Twinside/masterMatthew Pickering1-1/+1
Update pandoc.cabal, Bumping JuicyPixels upper bound
2014-12-06Update pandoc.cabal, Bumping JuicyPixels upper boundVincent1-1/+1
2014-12-01Merge pull request #1781 from bergey/rstJohn MacFarlane2-4/+39
parse RST quoted literal blocks and class directives
2014-12-01parse RST class directivesDaniel Bergey2-2/+14
The class directive accepts one or more class names, and creates a Div value with those classes. If the directive has an indented body, the body is parsed as the children of the Div. If not, the first block folowing the directive is made a child of the Div. This differs from the behavior of rst2xml, which does not create a Div element. Instead, the specified classes are applied to each child of the directive. However, most Pandoc Block constructors to not take an Attr argument, so we can't duplicate this behavior.
2014-12-01parse RST quoted literal blocksDaniel Bergey2-2/+25
closes #65 RST quoted literal blocks are the same as indented literal blocks (which pandoc already supports) except that the quote character is preserved in each line. This includes test cases for the quoted literal block, as well as additional tests for line blocks and indented literal blocks, to verify that these are unaffected by the changes.
2014-11-30ICML writer: Don't force all citations into footnotes.John MacFarlane1-1/+1
2014-11-25Reverted "omit blank lines after list items," better fix for #1777.John MacFarlane2-6/+29
Now we do as before, including blank lines after list items in loose lists (even though RST doesn't care -- this is just a matter of visual appeal). But we chomp any excess whitespace after the last list item, which solves #1777.
2014-11-25RST writer: Omit blank lines after list items.John MacFarlane2-26/+4
They are optional in RST (except after the last list item, of course). Fixes #1777.
2014-11-25RST writer: Ensure blank line after figure.John MacFarlane1-1/+1
2014-11-25LaTeX reader: support `\smartcite` and `\Smartcite` from biblatex.John MacFarlane1-0/+2
See jgm/pandoc-citeproc#26.
2014-11-19Fixed double-rendering of footnotes in RST tables.John MacFarlane1-3/+2
Closes #1769.
2014-11-17Really fix #1758. Add `id="cover"` to body on cover page.John MacFarlane2-7/+10
Not title page!
2014-11-16Use regular page template for nav.xhtml.John MacFarlane1-11/+8
This includes the HTML doctype. Closes #1759.
2014-11-16Removed extra body tag from epub3 template.John MacFarlane1-7/+5
This fixes a bug introduced by the previous fix.
2014-11-16epub, epub3 templates: Added id="cover" to body of titlepage.John MacFarlane1-6/+6
This aids styling, making it possible for example to set 0 margins on the title page. Closes jgm/pandoc#1758.
2014-11-16Make `embed` tag either block or inline.John MacFarlane1-2/+2
Closes #1756.
2014-11-16Removed extra `</body>` tag from `tests/html-reader.html`.John MacFarlane1-1/+0
2014-11-16Changed mime type for otf to application/vnd.ms-opentype.John MacFarlane1-1/+1
Closes #1761. This is needed for epub3 validation. See http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3.1
2014-11-13Fixed bug in org with bulleted lists:John MacFarlane2-5/+12
- a - b * c was being parsed as a list, even though an unindented `*` should make a heading. See <http://orgmode.org/manual/Plain-lists.html#fn-1>.
2014-11-13Add tests for external links with anchorsCaleb McDaniel2-0/+1
2014-11-13Account for external link URLs with anchorsCaleb McDaniel1-7/+10
Previously, if a URL had an anchor, such as http://johnmacfarlane.net/pandoc/README.html#synopsis the reader would incorrectly identify it as an internal link and return "#synopsis" for the link in output.
2014-11-12Merge pull request #1645 from neongreen/issue1636John MacFarlane2-2/+21
Fix 'Ext_lists_without_preceding_blankline' bug.
2014-11-09DokuWiki writer: add external_images testTimothy Humphries4-0/+6
Add test for #1739.
2014-11-09DokuWiki writer: fix external imagesTimothy Humphries1-2/+6
Handles #1739. Preface relative links with ":", absolute URIs without.
2014-11-05Merge pull request #1742 from tarleb/org-fix-linksJohn MacFarlane2-15/+36
Org fix links
2014-11-05Org reader: allow empty links for gitit interopAlbert Krewinkel2-1/+9
While empty links are not allowed in Emacs org-mode, Pandoc org-mode should support them: gitit relies on empty links as they are used to create wiki links. Fixes jgm/gitit#471
2014-11-05Org reader: absolute, relative paths in linksAlbert Krewinkel2-14/+27
The org reader was to restrictive when parsing links, some relative links and links to files given as absolute paths were not recognized correctly. The org reader's link parsing function was amended to handle such cases properly. This fixes #1741
2014-11-04DokuWiki writer: Better handling of block quotes.John MacFarlane2-6/+5
This change ensures that multiple paragraph blockquotes are rendered using native `>` rather than as HTML. Closes #1738.
2014-10-31Fixed README and pandoc.cabal for TWiki reader.John MacFarlane2-15/+16
2014-10-31Merge pull request #1726 from AlexanderS/twiki-parserJohn MacFarlane7-10/+941
TWiki Reader: add new new twiki reader
2014-10-30ODT writer: Correctly handle images without extensions.John MacFarlane1-5/+6
Closes #1729.
2014-10-30TWiki Reader: update documentationAlexander Sulfrian2-10/+12
2014-10-30TWiki Reader: add basic syntax testAlexander Sulfrian4-0/+399
2014-10-30TWiki Reader: add new new twiki readerAlexander Sulfrian3-0/+530