Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-08-08 | Revert "Avoid a pointless Text -> String conversion on output." | John MacFarlane | 1 | -14/+8 | |
This reverts commit 87ce1ffbd97f6cb2785f9fbf05f68d3185f50675. This change caused a problem on Windows that we didn't have before; this needs looking into. https://ci.appveyor.com/project/jgm/pandoc/build/job/fxq96log042df8dk .\pandoc.exe -s --toc ..\MANUAL.txt -o MANUAL.html pandoc.exe: MANUAL.html: commitAndReleaseBuffer: invalid argument (invalid character) Command exited with code 1 | |||||
2019-08-08 | lua-filters - avoid duplicate id element-components. | John MacFarlane | 1 | -1/+1 | |
2019-08-08 | Update lua-filters doc from lua sources. | John MacFarlane | 1 | -678/+710 | |
2019-08-08 | Fix links to Attr in lua-filters.doc. | John MacFarlane | 1 | -7/+7 | |
2019-08-08 | lua-filters.doc: make table narrower so it doesn't crowd out TOC. | John MacFarlane | 1 | -11/+11 | |
2019-08-07 | Avoid a pointless Text -> String conversion on output. | John MacFarlane | 1 | -8/+14 | |
2019-08-07 | Fix stack.yaml. | John MacFarlane | 1 | -4/+2 | |
2019-08-05 | Use dev version of pandoc-citeproc. | John MacFarlane | 2 | -2/+6 | |
2019-08-05 | Treat `ly` as verbatim too (#5671) | Urs Liska | 1 | -0/+1 | |
According to https://github.com/jgm/pandoc/issues/4725#issuecomment-399772217 not only the `lilypond` environment but also `ly` should be included in the verbatim list. @jperon https://github.com/jperon/lyluatex/issues/203 | |||||
2019-08-05 | Version bump to 2.8 because of type changes for templates. | John MacFarlane | 1 | -1/+1 | |
2019-07-30 | Markdown writer: Don't assume Doc has Eq instance. | John MacFarlane | 1 | -11/+13 | |
It won't in a future version. | |||||
2019-07-30 | ConTeXt writer; don't use `== empty` with `Doc`, use `isEmpty`. | John MacFarlane | 1 | -5/+5 | |
2019-07-29 | Update emoji list in Text.Pandoc.Emoji. | John MacFarlane | 2 | -8/+965 | |
Done using tools/emojis.hs, which uses the list from the gem GitHub uses. Future updates can be done with this tool. Closes #5666. | |||||
2019-07-29 | Use latest doctemplates. | John MacFarlane | 1 | -1/+1 | |
2019-07-28 | Use latest pandoc-citeproc. | John MacFarlane | 1 | -1/+1 | |
2019-07-28 | Update muse template to handle multiple authors better. | John MacFarlane | 2 | -2/+2 | |
2019-07-28 | Use doctemplates 0.3, change type of writerTemplate. | John MacFarlane | 41 | -214/+221 | |
* Require recent doctemplates. It is more flexible and supports partials. * Changed type of writerTemplate to Maybe Template instead of Maybe String. * Remove code from the LaTeX, Docbook, and JATS writers that looked in the template for strings to determine whether it is a book or an article, or whether csquotes is used. This was always kludgy and unreliable. To use csquotes for LaTeX, set `csquotes` in your variables or metadata. It is no longer sufficient to put `\usepackage{csquotes}` in your template or header includes. To specify a book style, use the `documentclass` variable or `--top-level-division`. * Change template code to use new API for doctemplates. | |||||
2019-07-24 | LaTeX reader: handle `\passthrough` macro used by latex writer. | John MacFarlane | 1 | -0/+2 | |
Closes #5659. | |||||
2019-07-24 | HTML writer: ensure TeX formulas are rendered correctly (#5658) | Philip Pesca | 2 | -2/+2 | |
The web service passed in to `--webtex` may render formulas using inline or display style by default. Prefixing formulas with the appropriate command ensures they are rendered correctly. This is a followup to the discussion in #5656. | |||||
2019-07-23 | Templates: don't import/export varListToJSON. | John MacFarlane | 1 | -1/+1 | |
We'll be removing that in doctemplates 0.3. | |||||
2019-07-23 | Templates: Change type of renderTemplate'. | John MacFarlane | 5 | -15/+14 | |
Return value is now Text rather than being polymorphic. This makes room for upcoming removal of the TemplateTarget class from doctemplates. Other code modified accordingly, and should compile with both current and upcoming version of doctemplates. | |||||
2019-07-23 | revealjs template: add navigationMode (#5657) | Mauro Bieg | 1 | -0/+4 | |
2019-07-23 | HTML writer: render inline formulas correctly with --webtex (#5656) | Philip Pesca | 2 | -1/+18 | |
We add `\textstyle` to the beginning of the formula to ensure it will be rendered in inline style. Closes #5655. | |||||
2019-07-22 | Fix error introduced in change to test for 4669. | John MacFarlane | 1 | -1/+1 | |
2019-07-22 | LaTeX reader: support tex `\tt` command. | John MacFarlane | 3 | -1/+8 | |
Closes #5654. | |||||
2019-07-22 | Org reader: accept ATTR_LATEX in block attributes | Albert Krewinkel | 2 | -3/+18 | |
Attributes for LaTeX output are accepted as valid block attributes; however, their values are ignored. Fixes: #5648 | |||||
2019-07-20 | LaTeX writer: fix line breaks at start of paragraph. | John MacFarlane | 2 | -9/+27 | |
Previously we just omitted these. Now we render them using `\hfill\break` instead of `\\`. This is a revision of a PR by @sabine (#5591) who should be credited with the idea. Closes #3324. | |||||
2019-07-20 | PDF: Better detection of a Cygwin environment. | John MacFarlane | 1 | -1/+8 | |
Should close #5451. Unlike the earlier fix, this one doesn't spill out to stderr when 'uname -o' fails. | |||||
2019-07-20 | Revert "PDF: create temp dir in . on Cygwin." | John MacFarlane | 1 | -4/+1 | |
This reverts commit 50885eabde6e9ba524d74a234154766f4c522627. Reopens #5451. The problem with the previous commit is that it would lead to spurious messages on stderr on platforms like macOS. | |||||
2019-07-20 | Removed an unnecessary liftIO. | John MacFarlane | 1 | -2/+1 | |
2019-07-20 | Moved istty check. | John MacFarlane | 1 | -5/+5 | |
2019-07-20 | Minor code clarity change. | John MacFarlane | 1 | -8/+8 | |
2019-07-20 | LaTeX reader: search for image with list of extensions... | John MacFarlane | 2 | -6/+22 | |
like latex does, if an extension is not provided. Closes #4933. | |||||
2019-07-19 | MANUAL: reveal.js flags (#5653) | Mauro Bieg | 1 | -0/+2 | |
2019-07-19 | Markdown: Ensure that expanded latex macros end with space if original did. | John MacFarlane | 2 | -1/+19 | |
Closes #4442. | |||||
2019-07-19 | PDF: create temp dir in . on Cygwin. | John MacFarlane | 1 | -1/+4 | |
See #5451. | |||||
2019-07-19 | Change order of ilvl and numId in document.xml (#5647) | Agustín Martín Barbero | 5 | -3/+3 | |
Workaround for Word Online shortcomming. Fixes #5645 Also, make list para properties go first. This reordering of properties shouldn't be necessary but it seems Word Online does not understand the docx correctly otherwise. | |||||
2019-07-19 | CONTRIBUTING: make clear that `--accept` works for all golden tests... | John MacFarlane | 1 | -6/+8 | |
not just docx. | |||||
2019-07-19 | CONTRIBUTING.md: mention command tests. | John MacFarlane | 1 | -1/+2 | |
2019-07-19 | Improve CONTRIBUTING.md with information on tests (#5652) | Agustín Martín Barbero | 1 | -0/+29 | |
from INSTALL.md and [elsewhere](https://github.com/jgm/pandoc/pull/4383#issuecomment-367379040) | |||||
2019-07-18 | Markdown writer: prefer using raw_attribute when enabled. | John MacFarlane | 6 | -16/+58 | |
The `raw_attribute` will be used to mark raw bits, even HTML and LaTeX, and even when `raw_html` and `raw_tex` are enabled, as they are by default. To get the old behavior, disable `raw_attribute` in the writer. Closes #4311. | |||||
2019-07-18 | HTML writer: ensure that line numbers in code blocks get id-prefix. | John MacFarlane | 2 | -3/+27 | |
Closes #5650. | |||||
2019-07-17 | Fix diff-zip.sh so it works on Darwin. | John MacFarlane | 1 | -1/+8 | |
BSD find is slightly different and doesn't have -regextype option. | |||||
2019-07-16 | LaTeX reader: handle \looseness command values better. | John MacFarlane | 1 | -5/+4 | |
Closes #4439. | |||||
2019-07-16 | Dokuwiki writer: handle mixed lists without HTML fallback. | John MacFarlane | 2 | -20/+31 | |
Closes #5107. | |||||
2019-07-16 | Ms writer: Use .LP instead of .PP for line block. | John MacFarlane | 1 | -1/+1 | |
Closes #5588. | |||||
2019-07-16 | Version to 2.7.4. | John MacFarlane | 1 | -1/+1 | |
2019-07-16 | Add option to include source files in ConTeXt PDFs (#5578) | Tristan Stenner | 2 | -0/+8 | |
Add a metadata option (`includesource`) to attach the source documents to the resulting PDF. | |||||
2019-07-16 | Make filterIpynbOutput strip ANSI escapes from code in output... | John MacFarlane | 1 | -1/+10 | |
for non-ipynb formats, when the default "best" option is used with --ipynb-output. The escape sequences cause problems in many formats, including LaTeX. Closes #5633. | |||||
2019-07-15 | Customizable type of PDF/A for the ConTeXt writer (issue #5608) (#5610) | Karl Pettersson | 5 | -12/+34 | |
* Let the user choose type of PDF/A generated with ConTeXt (closes #5608) * Updated ConTeXt test documents for changes in tagging * Updated color profile settings in accordance with ConTeXt wiki * Made ICC profile and output intent for PDF/A customizable * Read pdfa variable from meta (and updated manual) |