Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-02-18 | Muse writer: escape secondary notes | Alexander Krotov | 1 | -7/+10 | |
2019-02-18 | Move a comment in Muse Writer | Alexander Krotov | 1 | -1/+1 | |
2019-02-15 | ipynb writer: don't create attachments for images with absolute URIs. | John MacFarlane | 1 | -2/+3 | |
...including data: URIs. Closes #5303. | |||||
2019-02-15 | Revert "JATS writer: Support citations." | John MacFarlane | 1 | -4/+3 | |
This reverts commit 39889c22df578a4310bcf549fcd507c08fbf1416. | |||||
2019-02-15 | JATS writer: Support citations. | John MacFarlane | 1 | -3/+4 | |
2019-02-10 | Implement aria roles doc-bibliography, doc-biblioentry, doc-biblioref. | John MacFarlane | 1 | -2/+10 | |
Note that doc-biblioref is only used when link-citations produces links, since it belongs on links. See #4213. | |||||
2019-02-10 | JATS writer: wrap figure caption in <p> to fix validation (#5292) | Mauro Bieg | 1 | -1/+1 | |
closes #5290 | |||||
2019-02-09 | ipynb writer - ensure final newline. | John MacFarlane | 1 | -0/+1 | |
2019-02-09 | Fixed asciidoc display math in list contexts. | John MacFarlane | 1 | -17/+46 | |
2019-02-09 | Asciidoctor writer sets the stem attribute if it contains latexmath | TG | 1 | -1/+7 | |
2019-02-09 | Adds Asciidoctor sprcific writer and tests | TG | 1 | -12/+29 | |
2019-02-09 | AsciiDoc Writer: DisplayMath as asciidoc latexmath block | TG | 1 | -1/+4 | |
2019-02-09 | AsciiDoc writer: change bulletListLevel and orderedListLevel... | John MacFarlane | 1 | -4/+4 | |
so that 0 means "not in a list," which is more what one would expect. | |||||
2019-02-04 | Add missing copyright notices and remove license boilerplate (#5112) | Albert Krewinkel | 36 | -73/+73 | |
Quite a few modules were missing copyright notices. This commit adds copyright notices everywhere via haddock module headers. The old license boilerplate comment is redundant with this and has been removed. Update copyright years to 2019. Closes #4592. | |||||
2019-02-02 | HTML5 writer: implement WAI-ARIA roles for (end)notes. | John MacFarlane | 1 | -12/+25 | |
See #4213. | |||||
2019-02-01 | LaTeX writer: use right fold for escapeString. | John MacFarlane | 1 | -15/+13 | |
This is more elegant than the explicit recursive we were using. | |||||
2019-02-01 | LaTeX writer: code simplification in escaping. | John MacFarlane | 1 | -20/+21 | |
2019-02-01 | Markdown writer: use markdown="1" when appropriate for Divs. | John MacFarlane | 1 | -0/+6 | |
When `native_divs` and `markdown_in_html_blocks` are disabled but `raw_html` and `markdown_attribute` are enabled... | |||||
2019-02-01 | LaTeX writer: avoid `{}` after control sequences when escaping. | John MacFarlane | 1 | -26/+36 | |
`\ldots{}.` doesn't behave as well as `\ldots.` with the latex ellipsis package. This patch causes pandoc to avoid emitting the `{}` when it is not necessary. Now `\ldots` and other control sequences used in escaping will be followed by either a `{}`, a space, or nothing, depending on context. Thanks to Elliott Slaughter for the suggestion. | |||||
2019-01-26 | Improve writing metadata for docx, pptx and odt (#5252) | Agustín Martín Barbero | 4 | -18/+99 | |
* docx writer: support custom properties. Solves the writer part of #3024. Also supports additional core properties: `subject`, `lang`, `category`, `description`. * odt writer: improve standard properties, including the following core properties: `generator` (Pandoc/VERSION), `description`, `subject`, `keywords`, `initial-creator` (from authors), `creation-date` (actual creation date). Also fix date. * pptx writer: support custom properties. Also supports additional core properties: `subject`, `category`, `description`. * Includes golden tests. * MANUAL: document metadata support for docx, odt, pptx writers | |||||
2019-01-25 | Texinfo writer: use header identifier for anchor if present. | John MacFarlane | 1 | -2/+4 | |
Previously we were overwriting an existing identifier with a new one. Closes #4731. | |||||
2019-01-25 | LaTeX writer: add `#` special characeters for listings. | John MacFarlane | 1 | -1/+1 | |
This character needs special handling in lstinline. Closes #4939. | |||||
2019-01-24 | Ipynb: Put all jupyter metadata under 'jupyter' key. | John MacFarlane | 1 | -1/+6 | |
2019-01-24 | Revert "Prepend `jupyter_` to jupyter metadata keys." | John MacFarlane | 1 | -6/+0 | |
This reverts commit 5eaff399d5d6dc30b0d453eff42c4101674d75ab. | |||||
2019-01-24 | Ms writer: ensure we have a newline after .EN in disply math. | John MacFarlane | 1 | -1/+1 | |
Closes #5251. | |||||
2019-01-24 | Prepend `jupyter_` to jupyter metadata keys. | John MacFarlane | 1 | -0/+6 | |
This avoids conflics with things like 'toc'. | |||||
2019-01-23 | Removed superfluous import. | John MacFarlane | 1 | -1/+0 | |
2019-01-22 | Support ipynb (Jupyter notebook) as input and output format. | John MacFarlane | 1 | -0/+233 | |
[API change] * Depend on ipynb library. * Add `ipynb` as input and output format. * Added Text.Pandoc.Readers.Ipynb (supports both nbformat v3 and v4). * Added Text.Pandoc.Writers.Ipynb (supports nbformat v4). * Added ipynb readers and writers to T.P.Readers, T.P.Writers, and T.P.Extensions. Register the file extension .ipynb for this format. * Add `PandocIpynbDecodingError` constructor to Text.Pandoc.Error.Error. * Note: there is no template for ipynb. | |||||
2019-01-17 | odt writer: fix typo in custom properties (#5231) | Agustín Martín Barbero | 1 | -2/+2 | |
fixes #2839 | |||||
2019-01-10 | Make raw content marked `beamer` work in `beamer` output. | John MacFarlane | 1 | -14/+18 | |
See pandoc/lua-filters#40. | |||||
2019-01-10 | Make 'plain' RawBlocks work for 'plain' output. | John MacFarlane | 1 | -0/+5 | |
2019-01-09 | Beamer writer: avoid duplicated `fragile` property in some cases. | John MacFarlane | 1 | -1/+3 | |
Closes #5208. | |||||
2019-01-08 | EPUB writer: ensure that picture transforms are done on metadata too. | John MacFarlane | 1 | -6/+6 | |
2019-01-07 | Asciidoc writer: shorter delimiters for tables, blockquotes. | John MacFarlane | 1 | -3/+2 | |
This matches asciidoctor reference docs. Closes #4364. | |||||
2019-01-07 | revealjs writer: fix some section nesting corner cases. | John MacFarlane | 1 | -6/+13 | |
* Ensure that we don't get > 2 levels of section nesting, even with slide level > 2. * If slide level == N but there is no N-level header, make sure the next header with level > N gets treated as a slide and put in a section, rather than remaining loose. Closes #5168. | |||||
2019-01-04 | Use toTableOfContents in Powerpoint writer.... | John MacFarlane | 1 | -16/+3 | |
instead of duplicating code. | |||||
2019-01-04 | RTF writer: use toTableOfContents from T.P.W.Shared. | John MacFarlane | 1 | -17/+2 | |
2019-01-04 | Implement --toc in commonmark/gfm writers. | John MacFarlane | 2 | -3/+14 | |
Closes #5172. | |||||
2019-01-04 | T.P.Writers.Shared - add toTableOfContents (API change). | John MacFarlane | 2 | -22/+25 | |
This is refactored out from the Markdown writer. IT can be used in other writers to create a generic TOC. | |||||
2019-01-02 | Implement task lists (#5139) | Mauro Bieg | 4 | -15/+54 | |
Closes #3051 | |||||
2019-01-02 | EPUB writer: small fixes to nav.xhtml. | John MacFarlane | 1 | -0/+1 | |
* Add 'landmarks' id attribute to the landmarks nav. * Replace old default CSS removing numbers from ol.toc li with new rules that match `nav#toc ol, nav#landmarks ol`. * We keep the `toc` class on `ol` for backwards compatibility. | |||||
2019-01-02 | Commonmark writer: fix handling of SoftBreak with `hard_line_breaks`. | John MacFarlane | 1 | -1/+1 | |
This should be rendered as a space. Closes #5195. | |||||
2019-01-01 | Zimwiki writer: remove automatic colon prefix before internal images (#5183) | damien clochard | 1 | -6/+2 | |
* FIX #5183 : zimwiki : remove automatic colon prefix before internal images ![](foo.png) should be converted to {{foo.png}} (relative path) ![](/foo.png] should be converted to {{/foo.png}} (absolute path) Therefore the ':' prefix is useless and must be removed. I never used the zimwiki, but i submitted the similar dokuwiki fix. 1. The zimwiki syntax is inspired by dokuwiki 2. The zimwiki documentation does not mention the colon character for images 3. The pandoc zimwiki writer seems to be a copy-paste for the dokuwiki writer If the PR #5184 is applied, I think this one should be applied too. | |||||
2019-01-01 | Dokuwiki writer: remove automatic ':' prefix before internal image links (#5183) | damien clochard | 1 | -6/+2 | |
* FIX #5183 : remove automatic ':' prefix before internal image links `![](foo.png)` should be converted to `{{foo.png}}` (relative path) `![](/foo.png]` should be converted to `{{/foo.png}}` (absolute path) Therefore the ':' prefix is useless and must be removed. It blocks users from making relative image links. Update tests for DokuWiki Writer : external images | |||||
2018-12-31 | Replace read with safeRead (#5186) | Mauro Bieg | 2 | -10/+12 | |
closes #5180 | |||||
2018-12-28 | Org writer: preserve line-numbering for example and code blocks. | leungbk | 1 | -3/+9 | |
2018-12-12 | ICML writer: support custom-styles (#5137) | Mauro Bieg | 1 | -3/+10 | |
see #2106 | |||||
2018-12-10 | ICML writer: support unnumbered headers | mb21 | 1 | -2/+5 | |
closes #5140 | |||||
2018-12-05 | RST writer: don't wrap simple table header lines. | John MacFarlane | 1 | -1/+1 | |
Closes #5128. | |||||
2018-12-03 | Markdown writer: include needed whitespace after HTML figure. | John MacFarlane | 1 | -1/+1 | |
We use HTML for a figure in markdown dialects that can't represent it natively. Closes #5121. |