Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-10-21 | DOCX writer: Look in user data dir for archive reference.docx. | John MacFarlane | 1 | -1/+1 | |
2014-10-05 | Getting the page width from the reference file | Grégory Bataille | 1 | -17/+36 | |
Uses it to scale images that are too large. When there is no reference files, default to a US letter portrait size to scale the images | |||||
2014-09-11 | Docx writer: Renumber header and footer relationships to avoid collisions. | Jesse Rosenthal | 1 | -12/+56 | |
We previously took the old relationship names of the headers and footer in secptr. That led to collisions. We now make a map of availabl names in the relationships file, and then rename in secptr. | |||||
2014-08-30 | Merge branch 'mime' of https://github.com/Aelve/John into Aelve-mime | John MacFarlane | 1 | -8/+8 | |
Conflicts: src/Text/Pandoc/Writers/Docx.hs | |||||
2014-08-26 | Docx writer: Accomodate GHC 7.4 (no lookupEnv) | Jesse Rosenthal | 1 | -1/+1 | |
2014-08-25 | Docx writer: Default to user login and time of change if not given. | Jesse Rosenthal | 1 | -6/+21 | |
2014-08-25 | Docx writer: Implement track changes. | Jesse Rosenthal | 1 | -9/+40 | |
These have default authors and dates of "unknown" and timestamp-zero, respectively. | |||||
2014-08-24 | Hlint changes to Docx writer. | John MacFarlane | 1 | -22/+19 | |
2014-08-23 | Docx writer: Bibliography entries get Bibliography style. | John MacFarlane | 1 | -2/+6 | |
Closes #1559. | |||||
2014-08-17 | Merge pull request #1536 from considerate/master | John MacFarlane | 1 | -0/+3 | |
Add row width to tables in Docx XML | |||||
2014-08-17 | Docx writer: Fixed regression, bungled list numbering. | John MacFarlane | 1 | -3/+10 | |
In pandoc 1.13, all lists come out as basic ordered lists. This fixes that bad regression. Closes #1544. | |||||
2014-08-17 | MIME cleanup. | Artyom Kazak | 1 | -8/+8 | |
* Create a type synonym for MIME type (instead of `String`). * Add `getMimeTypeDef` function. * Avoid recreating MIME type `Map`s every time. * Move “Formula-...” case handling into `getMimeType`. | |||||
2014-08-17 | Simplify row width calculation. | Viktor Kronvall | 1 | -2/+2 | |
2014-08-17 | Include row width in table rows. | Christoffer Ackelman | 1 | -0/+3 | |
Added a property to all table rows where the sum of column widths is specified in pct (fraction of 5000). | |||||
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-04 | Use texmath 0.7 interface. | John MacFarlane | 1 | -2/+2 | |
2014-07-30 | PDF, Docx, EPUB, and ODT writers now automatically use MediaBag. | John MacFarlane | 1 | -1/+2 | |
The MediaBag is thread through from the reader, with no need to extract to files. | |||||
2014-07-29 | Docx writer: Print subtitle from metadata if present. | John MacFarlane | 1 | -3/+9 | |
Use Subtitle style. See #1451. | |||||
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-19 | Renamed readTeXMath' to avoid name conflict with texmath 0.6.7 | Matthew Pickering | 1 | -1/+1 | |
Also removed deprecated readTeXMath. | |||||
2014-06-29 | Docx writer: insert bookmark tags inside <w:p> tag. | Jesse Rosenthal | 1 | -3/+6 | |
This makes the header anchors in pandoc-generated ooxml match those generated by word. | |||||
2014-06-23 | Scale images to fit the page for DOCX | Grégory Bataille | 1 | -1/+9 | |
Images that are bigger than the page were truncated. This will now scale them if they are larger than the page. The scale is currently hardcoded with Word "letter" defaults (page size and margins) | |||||
2014-06-19 | Docx writer: Use Compact style for empty table cells. | John MacFarlane | 1 | -1/+3 | |
Otherwise we get overly tall lines when there are empty table cells and the other cells are compact. Closes #1353. | |||||
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-09 | Update copyright notices for 2014, add missing notices | Albert Krewinkel | 1 | -2/+2 | |
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-01-07 | Fixed small regression in docx writer. | John MacFarlane | 1 | -3/+6 | |
2014-01-02 | Moved fixDisplayMath from Docx writer to Writer.Shared. | John MacFarlane | 1 | -25/+2 | |
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 | 1 | -2/+4 | |
Replace uses of `maybe x id` with `fromMaybe x`. | |||||
2013-11-23 | Docx writer: Implemented csl flipflopping spans. | John MacFarlane | 1 | -1/+6 | |
2013-11-19 | Docx writer: Use mime type info returned by fetchItem. | John MacFarlane | 1 | -11/+13 | |
2013-11-07 | Docx writer: fixed core metadata. | John MacFarlane | 1 | -4/+5 | |
- Don't create empty date nodes if no date given. - Don't create multiple dc:creator nodes; instead separate by semicolons. Closes #1046. | |||||
2013-11-06 | Docx writer: Fix URL for core-properties in `_rels/.rels`. | John MacFarlane | 1 | -1/+1 | |
Partially addresses #1046. | |||||
2013-11-01 | TexMath: Export readTeXMath', which attends to display/inline. | John MacFarlane | 1 | -1/+1 | |
Deprecate readTeXMath, and use readTeXMath' in all the writers. Require texmath >= 0.6.5. | |||||
2013-09-19 | DOCX writer: Add missing settings.xml to the zip container. | John MacFarlane | 1 | -1/+3 | |
Closes #990. | |||||
2013-08-11 | Options: Changed `writerSourceDir` to `writerSourceURL` (now a Maybe). | John MacFarlane | 1 | -2/+1 | |
Previously we used to store the directory of the first input file, even if it was local, and used this as a base directory for finding images in ODT, EPUB, Docx, and PDF. This has been confusing to many users. It seems better to look for images relative to the current working directory, even if the first file argument is in another directory. writerSourceURL is set to 'Just url' when the first command-line argument is an absolute URL. (So, relative links will be resolved in relation to the first page.) Otherwise, 'Nothing'. The ODT, EPUB, Docx, and PDF writers have been modified accordingly. Note that this change may break some existing workflows. If you have been assuming that relative links will be interpreted relative to the directory of the first file argument, you'll need to make that the current directory before running pandoc. Closes #942. |