Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-05-04 | Docx writer: Fall back on distribution reference.docx. | John MacFarlane | 1 | -14/+15 | |
* Undid changes to parseXml in last commit. * Instead of a string fallback, we have parseXml fall back on the reference.docx that comes with pandoc if the user's reference.docx does not contain a needed file. * Closes #1185. | |||||
2014-05-04 | Docx writer: Added ability to give fallback in parseXml. | John MacFarlane | 1 | -16/+17 | |
2014-05-03 | AsciiDoc writer: Handle multiblock table cells. | John MacFarlane | 1 | -1/+2 | |
Closes #1246. | |||||
2014-05-03 | AsciiDoc writer: Correctly handle empty table cells. | John MacFarlane | 1 | -1/+2 | |
Closes #1245. | |||||
2014-05-03 | DocBook writer: Small tweaks to last commit. | John MacFarlane | 1 | -9/+3 | |
* Use isTightList from Shared. * Adjust writer test, since isTightList is a bit different from what was used before. Closes #1250. | |||||
2014-05-03 | Distinguish tight and loose lists in Docbook output | Neil Mayhew | 1 | -8/+18 | |
Determined by the first block of the first item being Plain. | |||||
2014-04-30 | ConTeXt writer: Improved autolinks. | John MacFarlane | 1 | -11/+5 | |
Closes #1270. | |||||
2014-04-26 | HTML writer: improved detection of image links. | John MacFarlane | 1 | -1/+5 | |
Previously image links with queries were not recognized, leading to use of an embed tag rather than an img tag. | |||||
2014-04-25 | Merge pull request #1265 from tarleb/org-links | John MacFarlane | 1 | -7/+11 | |
Improvements handling of internal links | |||||
2014-04-25 | LaTeX writer: Mark span contents with label if span has an ID | Albert Krewinkel | 1 | -7/+11 | |
Prepend `\label{span-id}` to span contents iff `span-id` is defined. | |||||
2014-04-24 | EPUB writer: Fixed some idrefs to match changes in ids. | John MacFarlane | 1 | -3/+3 | |
2014-04-24 | Markdown writer: Use proper escapes to avoid unwanted lists. | John MacFarlane | 1 | -11/+16 | |
Previously we used 0-width spaces, an ugly hack. Closes #980. | |||||
2014-04-23 | EPUB writer: include extension in epub ids. | John MacFarlane | 1 | -6/+11 | |
This fixes a problem with duplicate extensions for fonts and images with the same base name but different extensions. Closes #1254. | |||||
2014-04-13 | Merge pull request #1240 from neilmayhew/master | John MacFarlane | 1 | -3/+16 | |
Docbook output of Line Blocks | |||||
2014-04-12 | Improve handling of hard line breaks in Docbook writer | Neil Mayhew | 1 | -3/+16 | |
* Use a <literallayout> for the entire paragraph, not just for the newline character * Don't let LineBreaks inside footnotes influence the enclosing paragraph | |||||
2014-04-12 | Org writer: Fix output for linebreaks | Albert Krewinkel | 1 | -1/+1 | |
Hard linebreaks in Org mode are represented by the string "\\" as the last characters in a line. Adds this feature to the Org-mode writer. | |||||
2014-04-06 | LaTeX writer: Workaround for level 4-5 headers in quotes. | John MacFarlane | 1 | -2/+14 | |
These previously produced invalid LaTeX: `\paragraph` or `\subparagraph` in a `quote` environment. This adds an `mbox{}` in these contexts to work around the problem. See http://tex.stackexchange.com/a/169833/22451. Closes #1221. | |||||
2014-04-04 | LaTeX writer: handle line breaks in simple table cells. | John MacFarlane | 1 | -1/+20 | |
Closes #1217. | |||||
2014-04-04 | Correctly handle UTF-8 in custom lua scripts. Closes #1189. | John MacFarlane | 1 | -2/+1 | |
2014-04-04 | Custom writer: read lua script as UTF-8. | John MacFarlane | 1 | -1/+2 | |
This should fix #1189. | |||||
2014-03-31 | Make --toc-depth work well with books in latex/pdf output. | John MacFarlane | 1 | -2/+2 | |
Closes #1210. | |||||
2014-03-30 | Markdown writer: Use longer backtick fences if needed. | John MacFarlane | 1 | -1/+5 | |
If the content contains a backtick fence and there are attributes, make sure longer fences are used to delimit the code. Note: This works well in pandoc, but github markdown is more limited, and will interpret the first string of three or more backticks as ending the code block. Closes #1206. | |||||
2014-03-24 | RTF writer: Fixed tables cells containing paragraphs. | John MacFarlane | 1 | -1/+1 | |
This moves \intbl after \pard. | |||||
2014-03-14 | EPUB writer: Handle files linked in raw img tags. | John MacFarlane | 1 | -1/+1 | |
See #1170. | |||||
2014-03-14 | EPUB writer: Handle media in audio source tags. | John MacFarlane | 1 | -27/+28 | |
This should resolve the rest of #1170, but it needs extensive testing. Note that we now use a 'media' directory rather than 'images'. | |||||
2014-03-14 | EPUB writer: Incorporate files linked in <video> tags. | John MacFarlane | 1 | -10/+46 | |
src and poster will both be incorporated into content.opf and the epub container. This partially address #1170. Still need to do something similar for <audio>. | |||||
2014-03-14 | RST writer: Avoid stack overflow with certain tables. | John MacFarlane | 1 | -2/+6 | |
Closes #1197. Note that there are still problems with the formatting of the tables inside tables with output produced from the input file in the original bug report. But this fixes the stack overflow problem. | |||||
2014-03-12 | Man writer: Ensure that terms in definition lists aren't line wrapped. | John MacFarlane | 1 | -1/+1 | |
Closes #1195. | |||||
2014-03-05 | HTML writer: Add colgroup around col tags. | John MacFarlane | 1 | -5/+10 | |
Also affects EPUB writer. Closes #877. | |||||
2014-03-04 | Merge branch 'master' of https://github.com/mb21/pandoc into mb21-master | John MacFarlane | 1 | -0/+525 | |
2014-02-28 | InDesign ICML Writer | mb21 | 1 | -0/+525 | |
2014-02-17 | Merge pull request #1145 from wilx/en-dash-ligature-avoidance | John MacFarlane | 1 | -1/+1 | |
Use \/ to avoid en-dash ligature instead of -{}-. | |||||
2014-02-17 | HTML writer: Fixed bug with unnumbered section headings. | John MacFarlane | 1 | -1/+2 | |
Unnumbered section headings (with class 'unnumbered') were getting numbers. This commit fixes the bug. | |||||
2014-02-09 | Merge remote-tracking branch 'origin/master' into en-dash-ligature-avoidance. | Vaclav Zeman | 16 | -237/+935 | |
2014-02-08 | Use \/ to avoid en-dash ligature instead of -{}-. | Vaclav Zeman | 1 | -1/+1 | |
This is to fix LuaLaTeX output. The -{}- sequence does not avoid the ligature with LuaLaTeX but \/ does. | |||||
2014-01-07 | Fixed small regression in docx writer. | John MacFarlane | 1 | -3/+6 | |
2014-01-06 | EPUB writer: Strip out footnotes from toc entries. | John MacFarlane | 1 | -5/+6 | |
2014-01-06 | EPUB writer: Avoid duplicate notes when headings contain notes. | John MacFarlane | 1 | -1/+7 | |
This arose because the headings are copied into the metadata "title" field, and the note gets rendered twice. We strip the note now before putting the heading in "title". | |||||
2014-01-06 | HTML writer: Omit footnotes from TOC entries. | John MacFarlane | 1 | -1/+3 | |
Otherwise we get doubled footnotes when headers have notes! | |||||
2014-01-02 | RST writer: Ensure no blank line after def in definition list. | John MacFarlane | 1 | -1/+1 | |
Closes #992. | |||||
2014-01-02 | HTML writer: With --toc, headers no longer link to themselves. | John MacFarlane | 1 | -15/+8 | |
Closes #1081. | |||||
2014-01-02 | Use isHeaderBlock from Shared rather than defining it anew... | John MacFarlane | 2 | -9/+3 | |
2014-01-02 | ODT writer: Use mathml for proper rendering of formulas. | John MacFarlane | 1 | -8/+42 | |
Note: LibreOffice's support for this seems a bit buggy. But it should be better than what we had before. | |||||
2014-01-02 | OpenDocument writer: Fixed RawInline, RawBlock so they don't escape. | John MacFarlane | 1 | -6/+10 | |
2014-01-02 | Moved fixDisplayMath from Docx writer to Writer.Shared. | John MacFarlane | 2 | -25/+29 | |
2014-01-01 | Docx writer: Fixed problem with some modified reference docx files. | John MacFarlane | 1 | -2/+7 | |
Include `word/_rels/settings.xml.rels` if it exists, as well as other `rels` files besides the ones pandoc generates explicitly. | |||||
2013-12-19 | HLint: use fromMaybe | Henry de Valence | 5 | -12/+16 | |
Replace uses of `maybe x id` with `fromMaybe x`. | |||||
2013-12-19 | HLint: use /= | Henry de Valence | 1 | -1/+1 | |
2013-12-19 | HLint: redundant parens | Henry de Valence | 3 | -3/+3 | |
Remove parens enclosing a single element. | |||||
2013-12-19 | HLint: Remove lambdas. | Henry de Valence | 1 | -2/+1 | |