Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-11-01 | LaTeX writer: properly handle footnotes in captions. | John MacFarlane | 1 | -15/+18 | |
Closes #1506. | |||||
2015-11-01 | LaTeX writer: avoid footnotes in list of figures. | John MacFarlane | 1 | -1/+14 | |
Footnotes aren't allowed in the list of figures. This patch causes footnotes to be stripped from captions when entered into the list of figures. Footnotes still don't actually WORK in captions in latex/pdf, but at least an error is no longer raised. See #1506. | |||||
2015-10-30 | HTML writer: use width on whole table if col widths sum to < 100%. | John MacFarlane | 1 | -2/+9 | |
Otherwise some browsers display the table with the columns separated far apart. | |||||
2015-10-28 | LaTeX writer: add `\protect` to `\hyperlink`. | John MacFarlane | 1 | -1/+1 | |
Thanks to Hadrien Mary for the problem and solution. Closes #2490. | |||||
2015-10-27 | LaTeX writer: Use `\hypertarget` and `\hyperlink` for links. | John MacFarlane | 1 | -17/+9 | |
This works correctly to link to Div or Span elements. We now don't bother defining `\label` for Div or Span elements. Closes jgm/pandoc-citeproc#174. | |||||
2015-10-26 | Added de-CH-1901, fixed el-polyton | nickbart1980 | 1 | -2/+3 | |
el-polyton, not el-poly, see http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry | |||||
2015-10-25 | LaTeX writer: \textarabic fix | mb21 | 1 | -1/+1 | |
2015-10-22 | Avoid compiler warning for unused identifier. | John MacFarlane | 1 | -1/+1 | |
2015-10-22 | Textile writer: support start number in ordered lists. | John MacFarlane | 1 | -7/+18 | |
e.g. `#3`. Partially addresses #2465. TBD: reader support. | |||||
2015-10-18 | LaTeX and ConTeXt writers: support lang attribute on divs and spans | mb21 | 2 | -32/+110 | |
For LaTeX, also collect lang and dir attributes on spans and divs to set the lang, otherlangs and dir variables if they aren’t set already. See #895. | |||||
2015-10-17 | Consider header files when determining whether to use csquotes. | Andreas Lööw | 1 | -2/+7 | |
2015-10-15 | Support all frame attributes in Beamer. | John MacFarlane | 1 | -2/+5 | |
2015-10-15 | Use unicode super/subscripts for digits in plain output. | John MacFarlane | 1 | -3/+14 | |
2015-10-14 | More changes to avoid compiler warnings on ghc 7.10. | John MacFarlane | 3 | -8/+11 | |
* CPP around deprecated `parseTime`. * Text.Pandoc.Compat.Locale -> Text.Pandoc.Compat.Time, now exports Data.Time. | |||||
2015-10-14 | Use custom Prelude to avoid compiler warnings. | John MacFarlane | 13 | -15/+1 | |
- The (non-exported) prelude is in prelude/Prelude.hs. - It exports Monoid and Applicative, like base 4.8 prelude, but works with older base versions. - It exports (<>) for mappend. - It hides 'catch' on older base versions. This allows us to remove many imports of Data.Monoid and Control.Applicative, and remove Text.Pandoc.Compat.Monoid. It should allow us to use -Wall again for ghc 7.10. | |||||
2015-10-13 | LaTeX writer: add `\protect` to `\hyperdef` in inline context. | John MacFarlane | 1 | -1/+1 | |
This way we don't get an error when this is used as a moveable argument. Closes #2136. | |||||
2015-10-13 | epub with `--webtex`: include image file rather than data: URI. | John MacFarlane | 1 | -12/+8 | |
Closes #2363. | |||||
2015-10-12 | RST writer: do header normalization only in "standalone" mode. | John MacFarlane | 1 | -8/+5 | |
If we're producing a fragment, just skip normalization. After all, the fragment might be somewhere in the middle of the document. It's more important for fragments to have consistency in rendering (so they can be pieced together) than to normalize. This closes #2394. It's simpler and more robust than my earlier fix. | |||||
2015-10-12 | Revert "RST writer: tweaks to header normalization." | John MacFarlane | 1 | -22/+4 | |
This reverts commit 476b383c578699567ac4630391a15855521ab3d4. | |||||
2015-10-12 | RST writer: tweaks to header normalization. | John MacFarlane | 1 | -4/+22 | |
These changes are intended to make the writer more useful to people who are processing small fragments, which may for example look like this: ### third level header from previous section ## second level header Previously such fragments got turned into two headers of the same level. The new algorithm avoids doing any normalization until we hit the minimal-level header in the fragment (here, the second level header). Closes #2394. | |||||
2015-10-11 | Percent-encode more special characters in URLs. | John MacFarlane | 1 | -5/+5 | |
HTML, LaTeX writers adjusted. The special characters are '<','>','|','"','{','}','[',']','^', '`'. Closes #1640, #2377. | |||||
2015-10-11 | HTML reader/writer: better handling of "section" elements. | John MacFarlane | 1 | -2/+5 | |
Previously `<section>` tags were just parsed as raw HTML blocks. With this change, section elements are parsed as Div elements with the class "section". The HTML writer will use `<section>` tags to render these Divs in HTML5; otherwise they will be rendered as `<div class="section">`. Closes #2438. | |||||
2015-10-11 | Native writer: format Div properly, with blocks separated. | John MacFarlane | 1 | -0/+2 | |
2015-10-10 | Merge pull request #2441 from mb21/polyglossia-lang | John MacFarlane | 1 | -20/+36 | |
Change variable to polyglossia-lang.name and .options | |||||
2015-10-07 | Change variable to polyglossia-lang.name and .options | mb21 | 1 | -20/+36 | |
closes #2437 | |||||
2015-10-01 | Set the template variable $pandoc-version$ to pandocVersion by default. | Alex Vong | 1 | -0/+1 | |
* src/Text/Pandoc/Writers/Man.hs: Set $pandoc-version$ to be pandocVersion. | |||||
2015-10-01 | Set the template variable $hyphenate$ to true by default | Alex Vong | 1 | -0/+1 | |
* src/Text/Pandoc/Writers/Man.hs: Set $hyphenate$ to be true. | |||||
2015-09-26 | Merge pull request #2419 from mb21/bidi | John MacFarlane | 2 | -13/+40 | |
Support bidirectional text output with XeLaTeX, ConTeXt and HTML | |||||
2015-09-26 | Support bidirectional text output with XeLaTeX, ConTeXt and HTML | mb21 | 2 | -13/+40 | |
closes #2191 | |||||
2015-09-26 | Removed unneeded import. | John MacFarlane | 1 | -1/+0 | |
2015-09-25 | Correctly recognize book documentclass in metadata. | John MacFarlane | 1 | -1/+1 | |
Closes #2395. | |||||
2015-09-22 | Merge pull request #2369 from mb21/language-variables | John MacFarlane | 2 | -12/+176 | |
`lang` variable is now in BCP47 format | |||||
2015-09-19 | [RST Writer] Don't normalize heading levels below input minimum | Nikolay Yakimov | 1 | -1/+7 | |
2015-09-17 | Markdown writer: in TOC, add links to headers. | John MacFarlane | 1 | -2/+5 | |
Closes #829. | |||||
2015-09-09 | Use user data directory for reference docx archive. | John MacFarlane | 1 | -1/+1 | |
This allows the test suite to work without installing pandoc first. It also brings the docx writer in line with the odt writer. | |||||
2015-08-20 | `lang` variable is now in BCP47 format | mb21 | 2 | -12/+176 | |
strings are converted for LaTeX and ConTeXt output, closes #1614 | |||||
2015-08-13 | RST writer: ensure that `\ ` is inserted when needed... | John MacFarlane | 1 | -0/+2 | |
...before Cite and Span elements that begin with a "complex" element. Closes jgm/pandoc-citeproc#157. | |||||
2015-08-12 | RST writer: Don't insert `\ ` when complex expression in matched pairs. | John MacFarlane | 1 | -3/+4 | |
E.g. `` [:sup:`3`] `` is okay; you don't need `` [:sup:`3`\ ] ``. | |||||
2015-08-10 | Docx writer: Moved invalid character stripping to `formattedString`. | John MacFarlane | 1 | -4/+4 | |
This avoids an inefficient generic traversal. Updates f3aa03e. Closes #2356. | |||||
2015-08-07 | Updated readers, writers and README for link attribute | mb21 | 22 | -89/+100 | |
2015-08-07 | Updated readers and writers for new image attribute parameter. | John MacFarlane | 22 | -122/+310 | |
(mb21) | |||||
2015-08-05 | ICML writer: changed type of `writeICML`. | John MacFarlane | 1 | -39/+50 | |
API change: It is now `WriterOptions -> Pandoc -> IO String`. Also handle new image attributes. (mb21) | |||||
2015-08-05 | ICML writer: Add Cite style to citations. | John MacFarlane | 1 | -1/+3 | |
(mb21) | |||||
2015-07-21 | DZSlides: Add `role="note"` for speaker notes. | John MacFarlane | 1 | -1/+2 | |
Closes #1693. | |||||
2015-07-16 | Removed unneeded import. | John MacFarlane | 1 | -2/+1 | |
2015-07-16 | LaTeX writer: Fixed detection of 'chapters' from template. | John MacFarlane | 1 | -3/+11 | |
If a documentclass isn't specified in metadata, but the template has a hardwired bookish documentclass, act as if `--chapters` was used. This was the default in earlier versions, but it has been broken for a little while. | |||||
2015-07-14 | Updated to use cmark >= 0.4. | John MacFarlane | 1 | -4/+4 | |
2015-07-13 | HTML writer: support speaker notes in dzslides. | John MacFarlane | 1 | -0/+1 | |
With this change `<div class="notes">` and also `<div class="notes" role="note">` will be output if `-t dzslides` is used. So we can have speaker notes in dzslides too. Thanks to maybegeek. | |||||
2015-07-13 | DokuWiki: write $..$ instead of <math>..</math> | Tiziano Müller | 1 | -1/+1 | |
MathJax seems currently to be the only maintained math rendering extension for DokuWiki and it uses $..$ instead of <math>..</math>. | |||||
2015-07-08 | Correct superscript/subscript. | Andrew Dunning | 1 | -3/+3 | |