Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-19 | Haddock writer: Use _____ for hrule. | John MacFarlane | 1 | -2/+2 | |
Avoids interpretation as list. | |||||
2014-06-18 | Haddock writer: Only use Decimal list style. | John MacFarlane | 1 | -2/+2 | |
2014-06-18 | Small fix to haddock "tables". | John MacFarlane | 1 | -2/+2 | |
2014-06-18 | More polish on Haddock reader/writer. | John MacFarlane | 1 | -17/+6 | |
2014-06-18 | Finished first draft of Haddock writer. | John MacFarlane | 1 | -0/+357 | |
2014-06-03 | Markdown writer: Prettier pipe tables. | John MacFarlane | 1 | -8/+16 | |
Columns are now aligned. Closes #1323. | |||||
2014-06-03 | Docx writer: Section numbering carries over from reference.docx. | John MacFarlane | 1 | -1/+6 | |
Closes #1305. | |||||
2014-06-03 | Docx writer: Combine reference.docx numbering with pandoc's. | John MacFarlane | 1 | -6/+6 | |
This should have fixed #1305, allowing the reference.docx to define section numbering, but it doesn't. Now the headings appear with proper indentation, but the numbers don't appear. Unclear why. styles.xml and numbering.xml basically match the docx which has the expected result. | |||||
2014-06-03 | Docx writer: pandoc uses only numIds >= 1000 for lists. | John MacFarlane | 1 | -3/+8 | |
This opens up the possiblity (with further code changes) of preserving some numbering from the reference.docx (e.g. header numbering.) See #1305. | |||||
2014-06-03 | Docx writer: Changed abstractNumId numbering scheme. | John MacFarlane | 1 | -3/+3 | |
Now the minimum id used by pandoc is 990. All ids start with "99". This gives some room for a reference.docx to define numbering styles. Note: this is not yet possible, since pandoc generates numbering.xml entirely on its own. | |||||
2014-06-03 | Docx writer: Simplified abstractNumId numbering. | John MacFarlane | 1 | -19/+30 | |
Instead of sequential numbering, we assign numbers based on the list marker styles. This simplifies some of the code and should make it easier to modify numbering in the future. | |||||
2014-06-02 | Docx writer: Create overrides per-image for media/ in ref docx. | John MacFarlane | 1 | -13/+8 | |
This should be somewhat more robust and cover more types of images. | |||||
2014-06-02 | Docx writer: Improved entryFromArchive to avoid parse. | John MacFarlane | 1 | -2/+3 | |
No need to parse the XML if we're just going to render it right away! | |||||
2014-06-02 | Docx writer: Make images work in reference.docx headers/footers. | John MacFarlane | 1 | -8/+20 | |
* All media from reference.docx are copied into result. * Added defaults for common image types to [Content Types]. * Avoided redundant XML parse + write for entries taken over from reference.docx, for better performance. | |||||
2014-06-01 | Docx writer: Improved handling of headers/footers. | John MacFarlane | 1 | -52/+53 | |
2014-06-01 | Docx writer: Header and footer are now carried over from reference.docx. | John MacFarlane | 1 | -16/+38 | |
2014-06-01 | Minor code reformat. | John MacFarlane | 1 | -5/+5 | |
2014-05-31 | Docx writer: Take over document formatting from reference.docx. | John MacFarlane | 1 | -17/+30 | |
This includes margins, page size, page orientation. | |||||
2014-05-19 | EPUB writer: Handle multiple dates with OPF `event` attributes. | John MacFarlane | 1 | -9/+38 | |
Note: in EPUB3 we can have only one dc:date, so only the first one is used. | |||||
2014-05-19 | Avoid `import Prelude hiding (catch)`. | John MacFarlane | 1 | -7/+3 | |
See #1309. | |||||
2014-05-15 | EPUB writer: Fixed regression on cover image. | John MacFarlane | 1 | -5/+5 | |
In 1.12.4 and 1.12.4.2, the cover image would not appear properly, because the metadata id was not correct. This was introduced by the fix to #1254. Now we derive the id from the actual cover image filename, which we preserve rather than using "cover-image." | |||||
2014-05-09 | Update copyright notices for 2014, add missing notices | Albert Krewinkel | 21 | -43/+44 | |
2014-05-04 | LaTeX writer: Fixed inconsistencies with reference escaping. | John MacFarlane | 1 | -64/+67 | |
- toLabel is now monadic, and it does the needed string escaping. - Closes #1130. | |||||
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. |