aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
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-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
2014-10-28Merge pull request #1727 from toddsifleet/tws-fix-issue-1682John MacFarlane1-1/+2
Strip querystring in ODT write
2014-10-28Strip querystring in ODT writeTodd Sifleet1-1/+2
* Resolve #1682 * Strip querystring from filename before rendering ODT files, ODT cannot handle querystrings in files.
2014-10-28Clarified need for `-s` to get character encoding info.John MacFarlane1-0/+14
Closes #1724, #1725.
2014-10-25Docx test: Remove Danish header test.Jesse Rosenthal3-14/+0
Redundant, now that we're testing for a more generalized sort of internationalized blocks.
2014-10-25Docx reader: add tests for i18n headers.Jesse Rosenthal3-0/+12
This tests blockquotes and headers in Russian. Previous tests make sure that this doesn't produce a regression in en-us Header and Blockquotes.
2014-10-25Docx reader: fix for Issue #1692 (i18n styles)Nikolay Yakimov2-56/+130
This patch builds paragraph styles tree, then checks if paragraph has style.styleId or style/name.val matching predetermined patterns. Works with "Heading#" (name.val="heading #") for headings and "Quote"|"BlockQuote"|"BlockQuotation" (name.val="Quote"|"Block Text") for block quotes.
2014-10-23HTML writer: Make header attributes work outside top level.John MacFarlane3-4/+18
Previously they only appeared on top level header elements. Now they work e.g. in blockquotes. Closes #1711.
2014-10-21DOCX writer: Look in user data dir for archive reference.docx.John MacFarlane1-1/+1
2014-10-21Merge pull request #1706 from tarleb/org-symbol-entitiesJohn MacFarlane2-1/+20
Org reader: parse LaTeX-style MathML entities
2014-10-21Merge pull request #1668 from gbataille/widthFromRef2John MacFarlane1-17/+36
Getting the page width from the reference file
2014-10-20Version bump to 1.13.2.John MacFarlane1-1/+1
This is needed because of the addition of KaTeX to HTMLMathMethod.
2014-10-20Pretty: Make CR + BLANKLINE = BLANKLINE.John MacFarlane6-9/+8
This fixes an extra blank line we were getting at the end of markdown fragments (as well as rst, org, etc.) Closes #1705.
2014-10-20Recognize .icml extension and use icml writer. See #1707.John MacFarlane1-0/+1
2014-10-20Org reader: parse LaTeX-style MathML entitiesAlbert Krewinkel2-1/+20
Org supports special symbols which can be included using LaTeX syntax, but are actually MathML entities. Examples for this are `\nbsp` (non-breaking space), `\Aacute` (the letter A with accent acute) or `\copy` (the copyright sign ©). This fixes #1657.
2014-10-19Give better error messages when someone tries to convert pdf, doc, odt.John MacFarlane1-1/+12
Closes #1683.
2014-10-19Parsing: fixed `inlineMath` so it handles `\text{..}` containing `$`.John MacFarlane3-1/+26
For example: `$x = \text{the $n$th root of $y$}`. Closes #1677.
2014-10-18Markdown reader: allow `startnum` to work without `fancy_lists`.John MacFarlane1-2/+2
Formerly `pandoc -f markdown-fancy_lists+startnum` did not work properly.
2014-10-18Merge pull request #1680 from shelf/masterJohn MacFarlane2-7/+63
Respect indent when parsing Org bullet lists
2014-10-18Merge pull request #1700 from tarleb/org-emphasis-fixJohn MacFarlane2-5/+13
Org reader: fix rules for emphasis recognition
2014-10-18Merge pull request #1702 from tarleb/org-comment-treesJohn MacFarlane2-1/+38
Org reader: Drop COMMENT document trees
2014-10-18Org reader: Drop COMMENT document treesAlbert Krewinkel2-1/+38
Document trees under a header starting with the word `COMMENT` are comment trees and should not be exported. Those trees are dropped silently. This closes #1678.