aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-01-02Updated filter for man pages.John MacFarlane1-1/+1
2016-01-02Updated stack.yaml files.John MacFarlane5-16/+13
Use latest resolver. Use latest pandoc-citeproc and pandoc-types release.
2016-01-02Updated changelog.John MacFarlane1-0/+10
2016-01-02MediaWiki reader: interpret markup inside `<tt>`, `<code>`.John MacFarlane1-4/+6
Closes #2607.
2016-01-02MediaWiki writer: fix spacing issues.John MacFarlane2-109/+113
+ Start cell on new line unless it's a single Para or Plain. + For single Para or Plain, insert a space after the `|` to avoid problems when the text begins with a character like `-`. Closes #2604, closes #2606.
2016-01-01Tweaks to changelog.John MacFarlane1-56/+54
2016-01-01Updated changelog.John MacFarlane1-13/+41
2016-01-01Allow process 1.4John MacFarlane1-2/+2
2016-01-01Allow binary 0.8John MacFarlane1-1/+1
2016-01-01HTML slide templates: add toc. (Andrew Dunning)John MacFarlane1-14/+7
2016-01-01Relax version bound on HTTP.John MacFarlane1-2/+2
2015-12-30stack.yaml - use simpler extra-deps field.John MacFarlane5-13/+10
2015-12-29Use cmark 0.5.John MacFarlane9-28/+49
Closes #2605.
2015-12-23Added 'paper' after $papersize$ variable in latex template.John MacFarlane1-7/+14
Thus you can say `papersize: a4` and the latex will contain `a4paper`. This change may break some existing workflows; if you currently specify `a4paper`, you'll get `a4paperpaper` which is meaningless. However, the change seems worth it, as it will make the `papersize` variable work uniformly across ConTeXt, LaTeX, and html->pdf via wkhtmltopdf. See https://github.com/jgm/pandoc/commit/3861df510c45ecfc0ac9581dc6f16b07eac4a 62d#commitcomment-15135193
2015-12-22Updated README with margin and papersize variables.John MacFarlane1-2/+15
2015-12-22ConTeXt writer: set default layout based on margin-left, etc.John MacFarlane1-0/+10
This sets up `\setuplayout` based on the variables `margin-left`, `margin-right`, `margin-bottom`, and `margin-top`, if no layout is given.
2015-12-22LaTeX writer: create defaults for geometry using margin-left etc.John MacFarlane1-1/+10
If `geometry` has no value, but `margin-left`, `margin-right`, `margin-top`, and/or `-margin-bottom` are given, a default value for `geometry` is created from these. Note that these variables already affect PDF production via HTML5 with wkhtmltopdf.
2015-12-22LaTeX reader: allow blank space between braced arguments of commands.John MacFarlane1-1/+3
For example \foo {bar} {baz} Closes #2592.
2015-12-21Improved treatment of margins in wkhtmltopdf.John MacFarlane1-9/+13
2015-12-21Allow setting margins from metadata variables for wkhtmltopdf.John MacFarlane1-2/+6
Variables margin-top, margin-bottom, margin-left, margin-right. Setting them with css inside @page doesn't seem to work, at least with the released wkhtmltopdf.
2015-12-21pdf via wkhtmltopdf: take `title` and `page-size` from metadata.John MacFarlane1-13/+22
Adjusted default `page-size` to `letter`, to match current LaTeX template.
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