Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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) | |||||
2019-07-14 | Logging: Added UnknownExtensions constructor to LogMessage. | John MacFarlane | 3 | -39/+58 | |
[API change] Issue this warning when we're falling back to markdown or html because we don't recognize the extension of the input or output files. | |||||
2019-07-14 | Change formatForFilePaths to return a Maybe. | John MacFarlane | 3 | -8/+10 | |
Internal change. This will make it easier to emit messages when we're guessing at a format. | |||||
2019-07-14 | Update test for new skylighting. | John MacFarlane | 2 | -14/+12 | |
2019-07-14 | stack.yaml - use latest skylighting. | John MacFarlane | 1 | -2/+2 | |
2019-07-14 | Require skylighting 0.8.2 (fix bug with long integer literals). | John MacFarlane | 1 | -1/+1 | |
2019-07-14 | Require skylighting 0.8.1.2. | John MacFarlane | 1 | -1/+1 | |
This fixes a regression for C character escapes. | |||||
2019-07-14 | Muse: add RTL support | Alexander Krotov | 4 | -5/+31 | |
Closes #5551 | |||||
2019-07-13 | Fix #4499: add mbox and hbox handling to LaTeX reader (#5586) | Vasily Alferov | 2 | -1/+98 | |
When `+raw_tex` is enabled, these are passed through literally. Otherwise, they are handled in a way that emulates LaTeX's behavior. | |||||
2019-07-13 | Merge pull request #5589 from blmage/fix-3992 | John MacFarlane | 6 | -9/+48 | |
Add support for EPUB2 covers (fix #3992) | |||||
2019-07-13 | Merge pull request #5590 from blmage/fix-4206 | John MacFarlane | 1 | -7/+16 | |
Do not override "fileN" medias when writing to EPUB format (fix #4206) | |||||
2019-07-13 | Merge pull request #5604 from jgm/jats-abstract | John MacFarlane | 1 | -0/+5 | |
JATS template: add abstract | |||||
2019-07-13 | Man writer: Improved definition list term output. | John MacFarlane | 4 | -262/+272 | |
Now we boldface code but not other things. This matches the most common style in man pages (particularly option lists). Also, remove a regression in the last commit in which 'nowrap' was removed. | |||||
2019-07-13 | Man writer: fixed boldfacing of definition terms. | John MacFarlane | 3 | -19/+28 | |
Previously the bold-facing would be interrupted by other formatting, because we used `.B`. Closes #5620. | |||||
2019-07-13 | Merge pull request #5606 from blmage/odt-frames | John MacFarlane | 6 | -75/+129 | |
Improve the parsing of frames in ODT documents | |||||
2019-07-13 | LaTeX reader: Properly handle \providecommand and environment... | John MacFarlane | 2 | -21/+53 | |
They are now ignored if the corresponding command or environment is already defined. Closes #5635. | |||||
2019-07-13 | An empty commit to correct errors in recent commit messages: | John MacFarlane | 0 | -0/+0 | |
- 5f495eaace3ce4cf15a89b6b3cfb54df6d1658d8 closes #5638, not #5643. - 6d30d3e0b3b4a7005018179ff1098dd16eeb2652 closes #5642, not #5646. | |||||
2019-07-13 | EPUB writer: Use svg tag wrapper for cover image. | John MacFarlane | 3 | -2/+28 | |
In addition, the code generating the image has been moved to the template, to make it more customizable. Those who use custom EPUB templates will need to adjust their templates, adding the code to generate the cover image. (Previously this was just inserted into 'body'.) Closes #5643. | |||||
2019-07-13 | fix filename and issue reference of previous commit | mb21 | 1 | -0/+0 | |
2019-07-12 | Pass through aria- attributes to HTML5. | John MacFarlane | 3 | -4/+14 | |
Also document addition of data- prefix to unknown attributes. Closes #5646. | |||||
2019-07-12 | Rebuild man page | John MacFarlane | 1 | -0/+7 | |
2019-07-12 | Use -split-sections to reduce linux executable size. | John MacFarlane | 1 | -1/+1 | |
2019-07-12 | Update diff-zip to support windows (#5641) | Agustín Martín Barbero | 1 | -3/+3 | |
Trying to use this script on windows (git-bash) gave several errors: - *mktemp* complained about missing XXXs in the template (fixed by adding XXX) - *find* didn't understand the -E switch (fixed by using the equivalent arguments) - *terminal codes* were not being recognized by the console (-e added to echo) | |||||
2019-07-10 | Improve diff-docx.sh -> diff-zip.sh. | John MacFarlane | 2 | -22/+26 | |
It now can be used on odts, docx, or epubs. | |||||
2019-07-10 | Add diff-docx.sh to tools. | John MacFarlane | 1 | -0/+22 | |
2019-07-10 | RST reader: keep `name` property in `imgAttr`. (#5637) | Brian Leung | 2 | -1/+11 | |
Closes #5619. | |||||
2019-07-10 | Extensions.hs fix typo in PHP Markdown comment | Mauro Bieg | 1 | -1/+1 | |
2019-07-06 | Updating JATS template to v1.1dtd (#5632) | Arfon Smith | 2 | -5/+5 | |
* Updating JATS template to v1.1dtd * Update writer.jats | |||||
2019-07-06 | Markdown reader: handle inline code more eagerly within lists. (#5628) | Brian Leung | 2 | -5/+90 | |
Closes #5627. | |||||
2019-07-05 | Update data/jats.csl to avoid commas between editor name-part elements. (#5629) | Arfon Smith | 1 | -2/+2 | |
2019-07-04 | Remove misleading comment in man, ms templates. | John MacFarlane | 2 | -2/+2 | |
2019-07-02 | Fix redundant constraint warnings. (#5625) | Pete Ryland | 11 | -23/+20 | |
2019-06-23 | Update Lua function names in pandoc.system | niszet | 1 | -2/+2 | |
Fixed function names of pandoc.system.get_working_directory() and pandoc.system.with_temporary_directory() which are written in the manual of lua filter. | |||||
2019-06-22 | add tests for EPUB2 and EPUB3 cover reader | martinfrancois | 5 | -1/+33 | |
2019-06-21 | JATS Writer: do not emit empty <fn-group> (#5595) | Mauro Bieg | 1 | -1/+3 | |
introduced by e87b54dcad5e37133bc0f4cfc8039e9fd0dd1b4e |