Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-01-01 | Zimwiki writer: remove automatic colon prefix before internal images (#5183) | damien clochard | 2 | -8/+4 | |
* 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 | 3 | -9/+5 | |
* 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 | |||||
2019-01-01 | Org reader: fix self-link parsing regression | Albert Krewinkel | 2 | -5/+10 | |
Fixes a regression introduced by the previous commit. | |||||
2019-01-01 | Org reader: fix treatment of links to images | Albert Krewinkel | 3 | -26/+33 | |
Links with descriptions which are pointing to images are no longer read as inline images, but as proper links. Fixes: #5191 | |||||
2019-01-01 | LaTeX template: Reindent | Andrew Dunning | 1 | -46/+71 | |
Use two spaces to be consistent internally and with other templates. | |||||
2019-01-01 | LaTeX template: Remove obsolete fixltx2e package | Andrew Dunning | 1 | -1/+0 | |
2019-01-01 | Org reader: hlint | Albert Krewinkel | 1 | -2/+2 | |
2019-01-01 | LaTeX template: Load xurl if available | Andrew Dunning | 1 | -0/+1 | |
This breaks URLs in more locations. Only available with TeX Live 2018 and later. | |||||
2019-01-01 | LaTeX template: Load xcolor if available | Andrew Dunning | 1 | -3/+1 | |
The `xcolor` package must be loaded before the `footnote` package, which we load to fix foonotes in tables. Closes #4861. | |||||
2019-01-01 | LaTeX Template: Use Babel for LuaTeX | Andrew Dunning | 1 | -2/+2 | |
There are a number of bugs in Polyglossia under LuaLaTeX with common languages, e.g. <https://github.com/reutenauer/polyglossia/issues/182>. | |||||
2018-12-31 | Remove unused HasHeaderMap (#5175) | Alexander | 7 | -50/+4 | |
It is updated by some readers, but never actually used. | |||||
2018-12-31 | Simplify/fix reading of `--metadata` values on command line. | John MacFarlane | 2 | -7/+20 | |
Previously we used HsYAML's decodeStrict to recognize boolean values (treating everything else as a string). This caused problems relating to hvr/HsYAML#7. We now just check for the recognized boolean values `true|True|TRUE|false|False|FALSE`, and avoid using HsYAML. Closes #5177. | |||||
2018-12-31 | Replace read with safeRead (#5186) | Mauro Bieg | 3 | -13/+18 | |
closes #5180 | |||||
2018-12-31 | Allow '-' in filenames for custom lua writers. | John MacFarlane | 1 | -2/+3 | |
Closes #5187. | |||||
2018-12-31 | Removed obsolete and misleading comment. | John MacFarlane | 1 | -1/+0 | |
2018-12-29 | doc/org.md: improve documentation of org features | Albert Krewinkel | 1 | -15/+114 | |
2018-12-28 | Org writer: preserve line-numbering for example and code blocks. | leungbk | 2 | -3/+50 | |
2018-12-27 | Merge pull request #5185 from gely/master | Mauro Bieg | 1 | -1/+1 | |
Fix typo in MANUAL.txt | |||||
2018-12-27 | Fix typo in MANUAL.txt | Geoffrey Ely | 1 | -1/+1 | |
The example to create a div with id `refs` instead creates a div with class `#refs`. The fix is to add curly brackets. | |||||
2018-12-25 | Muse reader tests: test #cover directive | Alexander Krotov | 1 | -0/+5 | |
2018-12-19 | Allow latest Glob. | John MacFarlane | 1 | -2/+2 | |
2018-12-19 | INSTALL.md change button (#5167) | Mauro Bieg | 1 | -8/+3 | |
2018-12-18 | Decompress .svgz when converting to "data:" URI | Alexander Krotov | 1 | -1/+1 | |
Address #5163 | |||||
2018-12-17 | LaTeX reader: Support `\DeclareMathOperator`. | John MacFarlane | 1 | -1/+11 | |
Closes #5149. | |||||
2018-12-17 | Replace read with safeRead. Closes #5162. | John MacFarlane | 3 | -11/+8 | |
2018-12-17 | Parsing: use safeRead instead of read. | John MacFarlane | 1 | -1/+1 | |
2018-12-17 | HTML reader: handle empty start attribute. | John MacFarlane | 1 | -4/+2 | |
See #5162. | |||||
2018-12-16 | Update stack resolver. | John MacFarlane | 1 | -3/+1 | |
2018-12-14 | Remove unnecessary type="text/css" on style and link for HTML5. | John MacFarlane | 7 | -14/+14 | |
Closes #5146. | |||||
2018-12-13 | Man/Ms writers: don't escape `-` as `\-`. | John MacFarlane | 3 | -20/+19 | |
For discussion see https://groups.google.com/forum/#!msg/pandoc-discuss/B-oiCXcQOVo/WO-BXVpICAAJ The `\-` gets rendered in HTML and PDF as a unicode minus sign. | |||||
2018-12-12 | ICML writer: support custom-styles (#5137) | Mauro Bieg | 2 | -11/+20 | |
see #2106 | |||||
2018-12-11 | template:latex: make @ letter before using it (#5145) | Enno | 5 | -20/+35 | |
This fixes the previous commit for parskip and KOMA classes. | |||||
2018-12-11 | INSTALL: make text on button bigger. | John MacFarlane | 1 | -2/+3 | |
2018-12-11 | INSTALL.md: use HTML for download button. | John MacFarlane | 1 | -2/+3 | |
Closes #5144. | |||||
2018-12-11 | fix various links in INSTALL.md; bump required stack version (#5144) | max | 1 | -15/+15 | |
stack 1.6.5 produced an error; 1.7.0 and higher seems OK | |||||
2018-12-11 | Let KOMA document class handle parskip when applicable (#5143) | Enno | 5 | -30/+35 | |
This is just a change to the default latex template. | |||||
2018-12-10 | Docx: add test for lists with level overrides. | Jesse Rosenthal | 3 | -0/+41 | |
2018-12-10 | Docx: handle level overrides. | Jesse Rosenthal | 1 | -6/+17 | |
There can be overrides for the definitions of certain levels in numbering definitions. This implements that behavior. Closes: #5134 | |||||
2018-12-10 | Docx: add a levelOverride type. | Jesse Rosenthal | 1 | -3/+20 | |
2018-12-10 | Docx writer: Make Level into a real type. | Jesse Rosenthal | 2 | -4/+6 | |
It had previously been an alias for a tuple. | |||||
2018-12-10 | Fix CSS and viewport on try pandoc index.html. | John MacFarlane | 1 | -4/+10 | |
2018-12-10 | ICML writer: support unnumbered headers | mb21 | 1 | -2/+5 | |
closes #5140 | |||||
2018-12-09 | Merge pull request #5138 from katrinleinweber/patch-1 | Mauro Bieg | 1 | -2/+2 | |
fix typos in INSTALL.md | |||||
2018-12-09 | Fix typos | Katrin Leinweber | 1 | -2/+2 | |
2018-12-05 | RST writer: don't wrap simple table header lines. | John MacFarlane | 2 | -1/+19 | |
Closes #5128. | |||||
2018-12-04 | Strip out illegal XML characters in escapeXMLString. | John MacFarlane | 2 | -1/+15 | |
Closes #5119. | |||||
2018-12-03 | Allow latest zip-archive. | John MacFarlane | 1 | -2/+2 | |
2018-12-03 | Markdown writer: include needed whitespace after HTML figure. | John MacFarlane | 2 | -1/+14 | |
We use HTML for a figure in markdown dialects that can't represent it natively. Closes #5121. | |||||
2018-12-02 | Use compatible version of pandoc-citeproc. | John MacFarlane | 2 | -1/+2 | |
2018-12-02 | Allow tasty 1.2 | John MacFarlane | 1 | -1/+1 | |