Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-08-14 | Make `raw_tex` extension non-default for textile reader, writer. | John MacFarlane | 1 | -1/+3 | |
Enable `raw_tex` extension in textile writer. Closes #1532. | |||||
2014-08-12 | Merge pull request #1527 from mpickering/juicypixels | John MacFarlane | 1 | -2/+2 | |
Attempts to convert gif, tiff and bmp to png in pdf writer | |||||
2014-08-13 | LaTeX Writer: Added missing closing braces to hyperdef commands | Matthew Pickering | 1 | -2/+2 | |
2014-08-12 | HTML writer: use 'uri' or 'email' class for autolinks. | John MacFarlane | 1 | -5/+8 | |
This allows them to be styled specially. Closes #1501. | |||||
2014-08-12 | ConTeXt writer: improved autolink detection. | John MacFarlane | 1 | -1/+1 | |
It previously failed in some cases with escaped special characters. | |||||
2014-08-12 | Beamer: Use \footnote<.->{..} for notes. | John MacFarlane | 1 | -1/+6 | |
This ensures that the footnotes will not appear before the overlays in which their corresponding note markers appear. Closes #1525. | |||||
2014-08-11 | LaTeX writer: Don't produce `\label{}` for Div or Span. | John MacFarlane | 1 | -8/+7 | |
Just `\hyperdef`. A slight amendment to #1519. | |||||
2014-08-11 | Merge pull request #1519 from mpickering/more | John MacFarlane | 1 | -2/+7 | |
EPUB Normalisation and anchors for div blocks in tex | |||||
2014-08-11 | Merge pull request #1365 from gbataille/docx-margin | John MacFarlane | 1 | -1/+9 | |
Scale images to fit the page for DOCX | |||||
2014-08-11 | TeX Writer: Write hyperdef and label for identifiers on Div blocks | Matthew Pickering | 1 | -2/+7 | |
2014-08-11 | EPUB Writer: Added page-progression-direction meta field | Matthew Pickering | 1 | -2/+21 | |
2014-08-11 | EPUB Writer: Added explicit imports | Matthew Pickering | 1 | -18/+26 | |
2014-08-09 | HTML writer: Don't include empty TOC items for slide shows. | John MacFarlane | 1 | -0/+3 | |
Previously creating a slide with a horizontal rule would result in an empty list item in the TOC. This patch fixes that. | |||||
2014-08-08 | Plain writer: Use ALL CAPS for level 1 headers. | John MacFarlane | 1 | -1/+4 | |
2014-08-08 | Markdown writer: Respect -raw_html. | John MacFarlane | 1 | -12/+14 | |
pandoc -t markdown-raw_html should not emit any raw HTML, even span and div tags that go with pandoc Span and Div elements. Cleaned up a bit of the logic with extensions and plain. | |||||
2014-08-08 | Org Writer: Write anchor elements | Matthew Pickering | 1 | -0/+2 | |
The Org Writer now writes empty span elements which have an id as an anchor. For example `Span ("uid", [], []) []` becomes `<<uid>>` | |||||
2014-08-04 | Merge pull request #1486 from Aelve/minor | John MacFarlane | 8 | -49/+54 | |
Very minor cleanup and readability changes | |||||
2014-08-04 | Use texmath 0.7 interface. | John MacFarlane | 4 | -16/+19 | |
2014-08-04 | Add PatternGuards pragmas. | Artyom Kazak | 3 | -2/+5 | |
2014-08-04 | Remove dangling `where` from one function. | Artyom Kazak | 1 | -1/+0 | |
2014-08-04 | Use `stripPrefix` where appropriate. | Artyom Kazak | 7 | -40/+43 | |
2014-08-04 | Clean up `mediaTypeOf` a bit. | Artyom Kazak | 1 | -6/+6 | |
2014-08-03 | Correctly implement capitalisation. | Artyom Kazak | 2 | -15/+6 | |
Using `map toUpper` to capitalise text is wrong, as e.g. “Straße” should be converted to “STRASSE”, which is 1 character longer. This commit adds a `capitalize` function and replaces 2 identical implementations in different modules (`toCaps` and `capitalize`) with it. | |||||
2014-08-02 | Text.Pandoc.SelfContained changes. | John MacFarlane | 1 | -2/+1 | |
* mkSelfContained now takes just two arguments, WriterOptions and the string. * It no longer looks in data files. This only made sense when we had copies of slidy and S5 code there. * Shared.fetchItem' is used instead of the nearly duplicate getItem. | |||||
2014-07-31 | New module, Text.Pandoc.MediaBag. | John MacFarlane | 1 | -1/+2 | |
Moved `MediaBag` definition and functions from Shared: `lookupMedia`, `mediaDirectory`, `insertMedia`, `extractMediaBag`. Removed `emptyMediaBag`; use `mempty` instead, since `MediaBag` is a Monoid. | |||||
2014-07-31 | Made MediaBag a newtype, and added mime type information to media. | John MacFarlane | 1 | -1/+1 | |
Shared now exports functions for interacting with a MediaBag: - `emptyMediaBag` - `lookuMedia` - `insertMedia` - `mediaDirectory` - `extractMediaBag` | |||||
2014-07-30 | Allow --self-contained to get content from MediaBag. | John MacFarlane | 1 | -1/+1 | |
Added a parameter to makeSelfContained (API change). | |||||
2014-07-30 | RTF writer: Improved image embedding. | John MacFarlane | 1 | -1/+12 | |
Use calculated sizes. | |||||
2014-07-30 | RTF writer: refactored image embedding, using fetchItem'. | John MacFarlane | 1 | -26/+21 | |
2014-07-30 | PDF, Docx, EPUB, and ODT writers now automatically use MediaBag. | John MacFarlane | 3 | -4/+6 | |
The MediaBag is thread through from the reader, with no need to extract to files. | |||||
2014-07-29 | Mediawiki writer: don't escape inside `<source>`. | John MacFarlane | 1 | -4/+8 | |
Closes #1445. Escapes can still be used with `<code>` and `<pre>`. | |||||
2014-07-29 | Docx writer: Print subtitle from metadata if present. | John MacFarlane | 1 | -3/+9 | |
Use Subtitle style. See #1451. | |||||
2014-07-29 | LaTeX writer: use \(..\) instead of $..$ for inline math. | John MacFarlane | 1 | -1/+1 | |
Closes #1464. | |||||
2014-07-27 | Markdown writer: Separate adjacent lists of the same kind with comment. | John MacFarlane | 1 | -3/+9 | |
Closes #1458. | |||||
2014-07-27 | Markdown writer: More improvements to 'plain' output, updated tests. | John MacFarlane | 1 | -21/+26 | |
Math now appears in unicode if possible, without the distracting italics around identifiers. Blank lines around headers are more consistent. Footnotes appear in regular [n] style. | |||||
2014-07-27 | Markdown writer: Better 'plain' output. | John MacFarlane | 1 | -83/+101 | |
We now largely follow the style of Project Gutenberg. Emphasis is rendered with `_underscores_`, strong with ALL CAPS. The appearance of horizontal rules has changed (even in regular markdown) to a line across the whole page. Headings are rendered differently, using space to set them off. | |||||
2014-07-27 | Markdown writer: Update definition lists. | John MacFarlane | 1 | -2/+13 | |
They now behave like the new reader does. The old behavior can be activated with the `compact_definition_lists` extension. | |||||
2014-07-26 | Docx writer: Added missing case from last commit. | John MacFarlane | 1 | -1/+1 | |
2014-07-26 | Docx writer: include abstract with Abstract style. | John MacFarlane | 1 | -1/+8 | |
Addresses docx part of #1451. | |||||
2014-07-21 | Markdown writer: Avoid wrapping that might start a list. | John MacFarlane | 1 | -1/+5 | |
Or a blockquote or header. Closes #1013. | |||||
2014-07-20 | EPUB writer: Avoid excess whitespace in nav.xhtml. | John MacFarlane | 1 | -1/+1 | |
This should improve TOC view in iBooks. Closes #1392. | |||||
2014-07-20 | AsciiDoc writer: Double markers in intraword emphasis. | John MacFarlane | 1 | -11/+46 | |
Closes #1441. | |||||
2014-07-19 | Renamed readTeXMath' to avoid name conflict with texmath 0.6.7 | Matthew Pickering | 8 | -14/+14 | |
Also removed deprecated readTeXMath. | |||||
2014-07-16 | Remove unused import. | John MacFarlane | 1 | -1/+0 | |
2014-07-16 | Custom writers now work with `--template`. | John MacFarlane | 1 | -2/+14 | |
Removed HTML header scaffolding from data/sample.lua. | |||||
2014-07-16 | Made Citation information available in lua custom writer. | John MacFarlane | 1 | -2/+17 | |
2014-07-15 | HTML writer: Removed useless clause. | John MacFarlane | 1 | -4/+0 | |
2014-07-15 | LaTeX writer: Use \nolinkurl in email autolinks. | John MacFarlane | 1 | -2/+9 | |
This allows them to be styled using `\urlstyle{tt}`. Thanks to Ulrike Fischer for the solution. | |||||
2014-07-15 | EPUB writer: Keep newlines between block elements. | John MacFarlane | 1 | -1/+1 | |
This allows easier diff-ability. Closes #1424. | |||||
2014-07-13 | RTF writer: Avoid extra paragraph tags in metadata. | John MacFarlane | 1 | -2/+10 | |
Closes #1421. |