Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-30 | BCP47: change getLang so it can handle block-level contents. | John MacFarlane | 1 | -3/+5 | |
Some readers (e.g. RST) will populate the `lang` metadata field with block-level content. `getLang` has been modified to handle this. Previously in these cases the LaTeX writer would not properly set the "main language" of the document. Closes #6008. | |||||
2019-12-30 | Update JATS dtd (#6020) | Arfon Smith | 3 | -10/+10 | |
The current DTD for the JATS writer template is for Journal Publishing (JATS-journalpublishing1.dtd), which does not permit ext-link as a valid child (https://jats.nlm.nih.gov/publishing/tag-library/1.1/element/publisher-name.html). This update modifies the default output template to be the less restrictive JATS archiving and interchange DTD which systems like PubMed use internally to represent their articles. | |||||
2019-12-27 | Fix parsing bug affected indented code after raw HTML. | John MacFarlane | 3 | -8/+47 | |
Closes #6009, #5360. | |||||
2019-12-27 | Allow framebreaks for beamer's TOC (#6012) | Heiko Schlittermann | 1 | -1/+1 | |
2019-12-27 | Add a needed try. | John MacFarlane | 1 | -2/+3 | |
2019-12-26 | Use HTTPS in copyright message (#6010) | Felix Yan | 1 | -1/+1 | |
Since the website now redirect to https automatically, it would be nice to just use https in the help text. | |||||
2019-12-22 | Change date on changelog. | John MacFarlane | 1 | -1/+1 | |
2019-12-22 | Macos release workflow: just copy pandoc.1 rather than regenerating. | John MacFarlane | 1 | -4/+1 | |
2019-12-22 | trypandoc: add jira as input format. | John MacFarlane | 1 | -0/+1 | |
2019-12-22 | Update changelog. | John MacFarlane | 1 | -2/+9 | |
2019-12-22 | Ensure that later default file values for `variable` replace earlier ones. | John MacFarlane | 1 | -1/+3 | |
The semigroup instance for doctemplates Context does a left-biased union on the underlying Map. That means that if you union `{a: 1}` and `{a: 2}`, you get `{a: 1}`. This commit causes pandoc to do the operation in the opposite order, so that later default files take precedence in the values they assign to keys. See #5988. | |||||
2019-12-22 | Improve pandoc man page generation. | John MacFarlane | 5 | -14/+13 | |
Use before and after includes rather than special template. | |||||
2019-12-22 | doc/lua-filters.md: replace metadata example with image centering (#6004) | Albert Krewinkel | 1 | -22/+23 | |
Metadata defaults can be given via the command line `--metadata-file`. Adding raw format snippets is a common use case for Lua filters, so it seems sensible to provide an example. Thanks to @efx for proposing this filter. Closes: pandoc/lua-filters#70 | |||||
2019-12-22 | Use alpine 3.10 in building linux binary. | John MacFarlane | 1 | -1/+1 | |
For some reason the bulid fails with alpine 3.11, with a linker error finding -lz. See #6003. It would be good to figure out how to make it work with alpine 3.11. | |||||
2019-12-22 | changelog: combine entries for issue #5984. | Albert Krewinkel | 1 | -5/+4 | |
2019-12-21 | Revert "linux release-candidate build: try setting LIBRARY_PATH." | John MacFarlane | 1 | -1/+0 | |
This reverts commit 392c14311f5f48b0bfaa4e141c36ea2c365b90b1. It didn't help. | |||||
2019-12-21 | linux release-candidate build: try setting LIBRARY_PATH. | John MacFarlane | 1 | -0/+1 | |
For some reason ld can't find zlib in the latest build. Maybe this will help? | |||||
2019-12-21 | HTML writer: more tweaks to avoid round-trip failures... | John MacFarlane | 1 | -2/+5 | |
having to do with makeSections. | |||||
2019-12-21 | HTML reader tests: modify round-trip tests... | John MacFarlane | 1 | -0/+4 | |
to avoid a special failure case involving makeSections. | |||||
2019-12-21 | Update README.md. | John MacFarlane | 1 | -0/+3 | |
2019-12-21 | Update man page and MANUAL date. | John MacFarlane | 2 | -4/+7 | |
2019-12-21 | Update changelog. | John MacFarlane | 2 | -13/+50 | |
2019-12-21 | Fix regression with --number-sections. | John MacFarlane | 1 | -2/+1 | |
Starting with 2.8, `--number-sections` also had the effect of `--section-divs`, even if `--section-divs` was not specified. | |||||
2019-12-20 | Added glsl mime type for WebGL maps (#6000) | Jared Lander | 1 | -0/+1 | |
Added glsl mime type for WebGL maps | |||||
2019-12-20 | MANUAL: A bit clearer explanation for `--base-header-level`. | John MacFarlane | 1 | -2/+3 | |
We now say exactly how to work around the deprecation of this option. | |||||
2019-12-20 | Jira writer: use jira-wiki-markup renderer | Albert Krewinkel | 3 | -412/+286 | |
Pandoc's AST is translated into the Jira AST, which is then rendered by the dedicated Jira printer. The following improvements are included in this change: - non-jira raw blocks are fully discarded instead of showing as blank lines; - table cells can contain multiple blocks; - unnecessary blank lines are removed from the output; - markup chars within words are properly surrounded by braces; - preserving soft linebreaks via `--wrap=preserve` is supported. Note that backslashes are rendered as HTML entities, as there appears no alternative to produce a plain backslash if it is followed by markup. This may cause problems when used with confluence, where rendering seems to fail in this case. Closes: #5926 | |||||
2019-12-19 | Org reader: report errors properly | Albert Krewinkel | 1 | -2/+1 | |
Errors during parsing are now returned in full and no longer replaced by a custom message. | |||||
2019-12-19 | Org reader: fix parsing problem for colons in headline | Albert Krewinkel | 3 | -11/+37 | |
Fixed a problem where words surrounded by colons could causing parse failures in some cases when they occurred in headers. Fixes: #5993 | |||||
2019-12-18 | Org reader: wrap named table in div, using name as id | Albert Krewinkel | 3 | -21/+27 | |
Closes: #5984 | |||||
2019-12-18 | pandoc.cabal: remove redundancies in extra-source-files | Albert Krewinkel | 1 | -3/+0 | |
2019-12-17 | Add Jira to list of input formats in cabal description. | John MacFarlane | 1 | -2/+2 | |
2019-12-17 | Add jira reader (#5913) | Albert Krewinkel | 10 | -0/+769 | |
Closes #5556 | |||||
2019-12-17 | Adjust test to work with Windows (I hope). | John MacFarlane | 1 | -1/+1 | |
2019-12-17 | Provisional changelog. | John MacFarlane | 1 | -1/+29 | |
2019-12-17 | Bump to 2.9.1. | John MacFarlane | 1 | -1/+1 | |
2019-12-17 | Improved --toc generation. | John MacFarlane | 4 | -9/+61 | |
2019-12-17 | PDF: Ensure UTF8 when printing source in --verbose mode. | John MacFarlane | 1 | -1/+1 | |
This may fix #5997. | |||||
2019-12-17 | Templates: strip directory before trying to find partial in data files. | John MacFarlane | 1 | -3/+4 | |
Closes #5987. | |||||
2019-12-17 | Improved makeSections so we don't get doubled attributes. | John MacFarlane | 4 | -18/+23 | |
Closes #5986. | |||||
2019-12-17 | HTML reader: Add "nav" to list of block-level tags. | John MacFarlane | 1 | -1/+2 | |
2019-12-17 | Added test for #5986. | John MacFarlane | 1 | -0/+16 | |
2019-12-17 | Add section-divs command test (failing). | John MacFarlane | 1 | -0/+25 | |
2019-12-17 | lua-filters.md remove spurious dot in title (#5996) | Mauro Bieg | 1 | -1/+1 | |
2019-12-13 | Org reader: add table labels to caption if both are present | Albert Krewinkel | 2 | -4/+12 | |
The table `#+NAME:` or `#+LABEL:` is added to the table's caption in the form of an empty span with the label set as the span's ID. Closes: #5984 | |||||
2019-12-12 | Change misleading module comment. | John MacFarlane | 1 | -1/+1 | |
2019-12-11 | Regenerate man page. | John MacFarlane | 2 | -9/+25 | |
2019-12-11 | Use pandoc-citeproc 0.16.4.1 (cabal). | John MacFarlane | 1 | -1/+1 | |
2019-12-11 | Bump pandoc-citeproc version to 0.16.4.1. | John MacFarlane | 1 | -1/+1 | |
2019-12-11 | Update changelog. | John MacFarlane | 2 | -0/+64 | |
2019-12-11 | Bump version to 2.9 because of API change in Templates, Class. | John MacFarlane | 1 | -1/+1 | |