summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | Updated changelog.John MacFarlane2015-12-16
| |
* | Fixed typos in changelog.John MacFarlane2015-12-16
| | | | | | | | Thanks to Ophir Lifshitz.
* | Merge pull request #2591 from mb21/ICML-figuresJohn MacFarlane2015-12-16
|\ \ | | | | | | ICML writer: added figure handling, closes #2590
| * | ICML writer: added figure handling, closes #2590mb212015-12-16
|/ /
* | Reorganized changelog.John MacFarlane2015-12-14
| |
* | Fixed benchmark for new API.John MacFarlane2015-12-14
| |
* | Factored out convertWithOptsJohn MacFarlane2015-12-14
| |
* | Removed "compatibility mode" when called as hsmarkdown.John MacFarlane2015-12-14
| |
* | Removed deprecated --strict option entirely.John MacFarlane2015-12-14
| |
* | Updated changelog.John MacFarlane2015-12-13
| |
* | ICML writer: removed redundant import.John MacFarlane2015-12-13
| |
* | Merge pull request #2570 from mb21/rst-reader-imgattrsJohn MacFarlane2015-12-13
|\ \ | | | | | | Image attributes
| * | ODT/OpenDocument writer: improved image attributesmb212015-12-13
| | | | | | | | | | | | | | | - support for percentage widths/heights - use Attr instead of title to get dimensions from ODT walker to writeOpenDocument
| * | Docx reader: image attributesmb212015-12-13
| | |
| * | new function to extract multiple properties at once in CSS.hsmb212015-12-13
| | | | | | | | | | | | and use it in Textile reader
| * | RST reader: image attributesmb212015-12-13
| | |
* | | Fixed ICML image syntax for local files.John MacFarlane2015-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `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?
* | | Use posix path separators in ICML link URIs.John MacFarlane2015-12-13
| | | | | | | | | | | | Closes #2589.
* | | Use lts-3.18 in stack.yamls.John MacFarlane2015-12-13
| | |
* | | Use lts-3.18 resolver to avoid Windows build problems.John MacFarlane2015-12-13
|/ /
* | AsciiDoc writer: support anchors in spans with id elements.John MacFarlane2015-12-13
| |
* | AsciiDoc writers: Add anchors on Div elements.John MacFarlane2015-12-13
| | | | | | | | | | | | | | 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.
* | Implemented `east_asian_line_breaks` extension.John MacFarlane2015-12-12
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Update to use latest releases of highlighting-kate and texmath.John MacFarlane2015-12-12
| |
* | Fixed tests.John MacFarlane2015-12-12
| |
* | stack.yaml - use latest pandoc-types.John MacFarlane2015-12-12
| |
* | Test fixes.John MacFarlane2015-12-12
| |
* | Modified readers to emit SoftBreak when appropriate.John MacFarlane2015-12-12
| |
* | Updated pandoc-types commit in stack.yamlJohn MacFarlane2015-12-12
| |
* | Restore no wrapping of XML in Docx, ODT.John MacFarlane2015-12-12
| | | | | | | | | | It's possible that wrapping causes problems; safer to turn it off.
* | Fixed cite key parsing regression.John MacFarlane2015-12-12
| | | | | | | | | | | | | | We were capturing final colons as in [@foo: bar]; the citation id was being parsed as "@foo:". Closes jgm/pandoc-citeproc#201.
* | FB2 writer: support SoftBreak.John MacFarlane2015-12-12
| | | | | | | | This was omitted earlier.
* | Removed deprecated options `--offline` and `--html5`.John MacFarlane2015-12-11
| | | | | | | | These have been deprecated forever.
* | Implemented SoftBreak and new `--wrap` option.John MacFarlane2015-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Markdown reader: parse soft break as SoftBreak.John MacFarlane2015-12-11
| |
* | stack.yaml: Use pandoc-types commit with SoftBreak.John MacFarlane2015-12-11
| |
* | Update texmath version in stack.yaml.John MacFarlane2015-12-11
| |
* | Use latest texmath dev version in stack.yaml.John MacFarlane2015-12-11
| |
* | trypandoc: sort drop-down lists.John MacFarlane2015-12-07
| |
* | Fixed Emoji character definitions.John MacFarlane2015-12-04
| | | | | | | | | | | | There were many bugs in the definitions. Closes #2523.
* | Beamer template: make `\euro` conditional on presence of character.John MacFarlane2015-12-04
| | | | | | | | | | | | for xelatex and lualatex, as it is for pdflatex. Andrew Dunning.
* | Markdown reader: Improved pipe table relative widths.John MacFarlane2015-12-03
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | LaTeX template changes:John MacFarlane2015-12-03
| | | | | | | | | | | | | | | | - 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)
* | Fixed man template so disabling hyphenation actually works.John MacFarlane2015-12-03
| | | | | | | | The command needs to come after .TH.
* | Merge pull request #2569 from rgaiacs/add-highlighting-to-gapJohn MacFarlane2015-12-03
|\ \ | | | | | | Add highlighting support to GAP
| * | Add support to GAPRaniere Silva2015-12-03
|/ /
* | Merge pull request #2568 from mb21/readers-imagesJohn MacFarlane2015-12-02
|\ \ | | | | | | Textile Reader: image attributes
| * | Textile Reader: image attributesmb212015-12-03
| | | | | | | | | | | | closes #2515
| * | Parse CSS that doesn't contain the optional semicolonmb212015-12-02
|/ /
* | Use lts-3.16.John MacFarlane2015-12-01
| |