Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-13 | Merge pull request #2570 from mb21/rst-reader-imgattrs | John MacFarlane | 12 | -57/+101 | |
Image attributes | |||||
2015-12-13 | Fixed ICML image syntax for local files. | John MacFarlane | 2 | -3/+3 | |
`file:filename` rather than `file://./filename`. I think this is right; it matches what we had before with people actually using the ICML writer, and seems to match examples in the spec. I don't have a copy of InDesign I can test on, though. @DigitalPublishingToolkit and @mb21, can you have a look? | |||||
2015-12-13 | Use posix path separators in ICML link URIs. | John MacFarlane | 1 | -1/+1 | |
Closes #2589. | |||||
2015-12-13 | Use lts-3.18 in stack.yamls. | John MacFarlane | 3 | -7/+3 | |
2015-12-13 | Use lts-3.18 resolver to avoid Windows build problems. | John MacFarlane | 1 | -1/+5 | |
2015-12-13 | ODT/OpenDocument writer: improved image attributes | mb21 | 2 | -27/+34 | |
- support for percentage widths/heights - use Attr instead of title to get dimensions from ODT walker to writeOpenDocument | |||||
2015-12-13 | Docx reader: image attributes | mb21 | 6 | -16/+38 | |
2015-12-13 | new function to extract multiple properties at once in CSS.hs | mb21 | 2 | -6/+14 | |
and use it in Textile reader | |||||
2015-12-13 | RST reader: image attributes | mb21 | 2 | -8/+15 | |
2015-12-13 | AsciiDoc writer: support anchors in spans with id elements. | John MacFarlane | 1 | -1/+5 | |
2015-12-13 | AsciiDoc writers: Add anchors on Div elements. | John MacFarlane | 1 | -1/+4 | |
This partially addresses jgm/pandoc-citeproc#143. It does not use the native asciidoc syntax for citations, but it does get the links to individual citations working. | |||||
2015-12-12 | Implemented `east_asian_line_breaks` extension. | John MacFarlane | 3 | -2/+26 | |
Text.Pandoc.Options: Added `Ext_east_asian_line_breaks` constructor to `Extension` (API change). This extension is like `ignore_line_breaks`, but smarter -- it only ignores line breaks between two East Asian wide characters. This makes it better suited for writing with a mix of East Asian and non-East Asian scripts. Closes #2586. | |||||
2015-12-12 | Update to use latest releases of highlighting-kate and texmath. | John MacFarlane | 2 | -7/+7 | |
2015-12-12 | Fixed tests. | John MacFarlane | 12 | -24/+30 | |
2015-12-12 | stack.yaml - use latest pandoc-types. | John MacFarlane | 1 | -1/+1 | |
2015-12-12 | Test fixes. | John MacFarlane | 20 | -237/+238 | |
2015-12-12 | Modified readers to emit SoftBreak when appropriate. | John MacFarlane | 14 | -16/+26 | |
2015-12-12 | Updated pandoc-types commit in stack.yaml | John MacFarlane | 1 | -1/+1 | |
2015-12-12 | Restore no wrapping of XML in Docx, ODT. | John MacFarlane | 2 | -2/+2 | |
It's possible that wrapping causes problems; safer to turn it off. | |||||
2015-12-12 | Fixed cite key parsing regression. | John MacFarlane | 1 | -1/+1 | |
We were capturing final colons as in [@foo: bar]; the citation id was being parsed as "@foo:". Closes jgm/pandoc-citeproc#201. | |||||
2015-12-12 | FB2 writer: support SoftBreak. | John MacFarlane | 1 | -1/+2 | |
This was omitted earlier. | |||||
2015-12-11 | Removed deprecated options `--offline` and `--html5`. | John MacFarlane | 2 | -25/+0 | |
These have been deprecated forever. | |||||
2015-12-11 | Implemented SoftBreak and new `--wrap` option. | John MacFarlane | 50 | -171/+323 | |
Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701. | |||||
2015-12-11 | Markdown reader: parse soft break as SoftBreak. | John MacFarlane | 1 | -1/+1 | |
2015-12-11 | stack.yaml: Use pandoc-types commit with SoftBreak. | John MacFarlane | 1 | -1/+1 | |
2015-12-11 | Update texmath version in stack.yaml. | John MacFarlane | 1 | -1/+1 | |
2015-12-11 | Use latest texmath dev version in stack.yaml. | John MacFarlane | 1 | -1/+1 | |
2015-12-07 | trypandoc: sort drop-down lists. | John MacFarlane | 1 | -29/+29 | |
2015-12-04 | Fixed Emoji character definitions. | John MacFarlane | 1 | -870/+871 | |
There were many bugs in the definitions. Closes #2523. | |||||
2015-12-04 | Beamer template: make `\euro` conditional on presence of character. | John MacFarlane | 1 | -7/+7 | |
for xelatex and lualatex, as it is for pdflatex. Andrew Dunning. | |||||
2015-12-03 | Markdown reader: Improved pipe table relative widths. | John MacFarlane | 2 | -7/+8 | |
Previously pipe table columns got relative widths (based on the header underscore lines) when the source of one of the rows was greater in width than the column width. This gave bad results in some cases where much of the width of the row was due to nonprinting material (e.g. link URLs). Now pandoc only looks at printable width (the width of a plain string version of the source), which should give better results. Thanks to John Muccigrosso for bringing up the issue. | |||||
2015-12-03 | LaTeX template changes: | John MacFarlane | 5 | -15/+7 | |
- only pass options to color package if colorlinks is set - make definition of `\euro` conditional in xelatex/lualatex, as it is already for pdflatex (Andrew Dunning) | |||||
2015-12-03 | Fixed man template so disabling hyphenation actually works. | John MacFarlane | 2 | -8/+8 | |
The command needs to come after .TH. | |||||
2015-12-03 | Merge pull request #2569 from rgaiacs/add-highlighting-to-gap | John MacFarlane | 1 | -1/+2 | |
Add highlighting support to GAP | |||||
2015-12-03 | Add support to GAP | Raniere Silva | 1 | -1/+2 | |
2015-12-02 | Merge pull request #2568 from mb21/readers-images | John MacFarlane | 2 | -3/+10 | |
Textile Reader: image attributes | |||||
2015-12-03 | Textile Reader: image attributes | mb21 | 1 | -2/+9 | |
closes #2515 | |||||
2015-12-02 | Parse CSS that doesn't contain the optional semicolon | mb21 | 1 | -1/+1 | |
2015-12-01 | Use lts-3.16. | John MacFarlane | 5 | -5/+5 | |
2015-12-01 | Docx writer: better handling of PDF images. | John MacFarlane | 1 | -8/+2 | |
Previously we tried to get the image size from the image even if an explicit size was specified. Since we still can't get image size for PDFs, this made it impossible to use PDF images in docx. Now we don't try to get the image size when a size is already explicitly specified. | |||||
2015-11-28 | stack.full.yaml - use local versions of everything. | John MacFarlane | 2 | -9/+6 | |
2015-11-24 | Markdown writer: use raw HTML for link/image attributes when | John MacFarlane | 1 | -2/+12 | |
the `link_attributes` extension is unset and `raw_html` is set. Closes #2554. | |||||
2015-11-24 | s/mb21/Mauro Bieg/ in README contributor list and changelog. | John MacFarlane | 2 | -18/+20 | |
2015-11-24 | Added stack.full.yaml to build pandoc-citeproc as well. | John MacFarlane | 1 | -0/+22 | |
2015-11-24 | Added bodyless pipe table test case. | John MacFarlane | 2 | -1/+11 | |
See #2556. | |||||
2015-11-24 | Updated README for new pipe table behavior. | John MacFarlane | 1 | -4/+4 | |
2015-11-24 | Allow pipe tables with no body rows. | John MacFarlane | 1 | -2/+3 | |
Previously this raised a runtime error. Closes #2556. | |||||
2015-11-24 | LaTeX reader: Improved smart quote parsing. | John MacFarlane | 1 | -14/+13 | |
This fixes redering of unmatched quotes. Closes #2555. | |||||
2015-11-24 | Improved fetchItem so that C:/Blah/Blah.jpg isn't treated as URL. | John MacFarlane | 1 | -6/+19 | |
The Haskell URI parsing routines will accept "C:" as a scheme, so we rule that out manually. This helps with `--self-contained` and absolute Windows paths. See http://stackoverflow.com/questions/33899126/rchart-in-markdown-doesnt-render-due-to-invalidurlexception-from-pandoc | |||||
2015-11-23 | LaTeX reader: Use curly quotes for unmatched `. | John MacFarlane | 2 | -2/+9 | |
Partially addresses #2555. Note that there's still a problem with the code sample given. |