aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-12-21Added preliminary support for PDF creation via wkhtmltopdf.John MacFarlane3-21/+79
To use this: pandoc -t html5 -o result.pdf (and add `--mathjax` if you have math.)
2015-12-19Merge pull request #2598 from twsh/biblatexoptionsJohn MacFarlane1-1/+1
Removed hyphen
2015-12-19Updated changelogJohn MacFarlane1-13/+41
2015-12-20Removed hyphenThomas Hodgson1-1/+1
2015-12-19Beamer: Moved header-includes before setting of title etc.John MacFarlane1-7/+7
This matches a change already made in the LaTeX template (Thomas Hodgson). Closes jgm/pandoc-templates#168
2015-12-19LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane7-8/+36
* Added `thanks` variable * Use `parskip.sty` when `indent` isn't set (fall back to using `setlength` as before if `parskip.sty` isn't available). * Use `biblio-style` with biblatex. * Added `biblatexoptions` variable. * Added `section-titles` variable (defaults to true) to enable/suppress section title pages in beamer slide shows. * Moved beamer themes after fonts, so that themes can change fonts. (Previously the fonts set were being clobbered by lmodern.sty.)
2015-12-19Added needed import of FromJSON.John MacFarlane1-1/+1
Fixes build failure.
2015-12-19Fix language code for Czech (cs not cz)John MacFarlane2-2/+1
Closes #2597.
2015-12-19Merge branch 'AndreasLoow-master'John MacFarlane2-7/+13
2015-12-19Merge branch 'master' of https://github.com/AndreasLoow/pandoc into ↵John MacFarlane2-7/+13
AndreasLoow-master
2015-12-19README: reflowed to avoid overly long lines.John MacFarlane1-5/+7
2015-12-19Markdown reader: fixed parsing bug with macros.John MacFarlane1-1/+1
Previously macro definitions in indented code blocks were being parsed as macro definitions, not code.
2015-12-19Explain how to get `subtitle` to work with latex article etc.John MacFarlane1-2/+12
Thanks to Andrew Dunning.
2015-12-18Merge pull request #2593 from mb21/icml-linebreaksJohn MacFarlane3-442/+773
ICML writer: intersperse line breaks
2015-12-18Merge pull request #2594 from adunning/patch-1John MacFarlane1-1/+4
Document change to subtitle in LaTeX.
2015-12-17Document change to subtitle in LaTeX.Andrew Dunning1-1/+4
One could also tell users to add this to header-includes if `subtitle` is desired for `article` and so forth, but I will leave it out for now for the sake of simplicity: ```tex \providecommand{\subtitle}[1]{% \usepackage{titling} \posttitle{% \par\large#1\end{center}} } ```
2015-12-17ICML writer: intersperse line breaksmb213-442/+773
instead of appending them to every ParagraphStyleRange closes #2501
2015-12-16Updated changelog.John MacFarlane1-0/+1
2015-12-16Fixed typos in changelog.John MacFarlane1-4/+4
Thanks to Ophir Lifshitz.
2015-12-16Merge pull request #2591 from mb21/ICML-figuresJohn MacFarlane2-4/+28
ICML writer: added figure handling, closes #2590
2015-12-16ICML writer: added figure handling, closes #2590mb212-4/+28
2015-12-14Reorganized changelog.John MacFarlane1-138/+135
2015-12-14Fixed benchmark for new API.John MacFarlane1-2/+2
2015-12-14Factored out convertWithOptsJohn MacFarlane1-0/+3
2015-12-14Removed "compatibility mode" when called as hsmarkdown.John MacFarlane3-41/+12
2015-12-14Removed deprecated --strict option entirely.John MacFarlane1-8/+0
2015-12-13Updated changelog.John MacFarlane1-0/+247
2015-12-13ICML writer: removed redundant import.John MacFarlane1-1/+0
2015-12-13Merge pull request #2570 from mb21/rst-reader-imgattrsJohn MacFarlane12-57/+101
Image attributes
2015-12-13Fixed ICML image syntax for local files.John MacFarlane2-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-13Use posix path separators in ICML link URIs.John MacFarlane1-1/+1
Closes #2589.
2015-12-13Use lts-3.18 in stack.yamls.John MacFarlane3-7/+3
2015-12-13Use lts-3.18 resolver to avoid Windows build problems.John MacFarlane1-1/+5
2015-12-13ODT/OpenDocument writer: improved image attributesmb212-27/+34
- support for percentage widths/heights - use Attr instead of title to get dimensions from ODT walker to writeOpenDocument
2015-12-13Docx reader: image attributesmb216-16/+38
2015-12-13new function to extract multiple properties at once in CSS.hsmb212-6/+14
and use it in Textile reader
2015-12-13RST reader: image attributesmb212-8/+15
2015-12-13AsciiDoc writer: support anchors in spans with id elements.John MacFarlane1-1/+5
2015-12-13AsciiDoc writers: Add anchors on Div elements.John MacFarlane1-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-12Implemented `east_asian_line_breaks` extension.John MacFarlane3-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-12Update to use latest releases of highlighting-kate and texmath.John MacFarlane2-7/+7
2015-12-12Fixed tests.John MacFarlane12-24/+30
2015-12-12stack.yaml - use latest pandoc-types.John MacFarlane1-1/+1
2015-12-12Test fixes.John MacFarlane20-237/+238
2015-12-12Modified readers to emit SoftBreak when appropriate.John MacFarlane14-16/+26
2015-12-12Updated pandoc-types commit in stack.yamlJohn MacFarlane1-1/+1
2015-12-12Restore no wrapping of XML in Docx, ODT.John MacFarlane2-2/+2
It's possible that wrapping causes problems; safer to turn it off.
2015-12-12Fixed cite key parsing regression.John MacFarlane1-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-12FB2 writer: support SoftBreak.John MacFarlane1-1/+2
This was omitted earlier.
2015-12-11Removed deprecated options `--offline` and `--html5`.John MacFarlane2-25/+0
These have been deprecated forever.