Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-01-05 | RST, Markdown writers: Fixed rendering of grid tables with blank rows. | John MacFarlane | 2 | -2/+2 | |
Closes #2615. | |||||
2016-01-05 | Go back to testing with ghc 7.10.2. | John MacFarlane | 2 | -4/+4 | |
Avoids the dreaded "the version of cabal being used has changed" error. https://www.reddit.com/r/haskell/comments/3f4bgr/the_version_of_cabal_being_used_has_changed/ | |||||
2016-01-05 | Regenerated .travis.yml to include 7.10.3. | John MacFarlane | 1 | -0/+3 | |
2016-01-05 | Added 7.10.3 to make_travis_yml.hs known versions. | John MacFarlane | 1 | -1/+1 | |
2016-01-05 | Updated .travis.yml, added ghc 7.10.3 to tested-with. | John MacFarlane | 2 | -25/+73 | |
2016-01-04 | Fixed v1.16 reversion with --latex-engine. | John MacFarlane | 1 | -2/+2 | |
In 1.16 --latex-engine raises an error if a full path is given. This commit fixes this reversion. Closes #2618. | |||||
2016-01-04 | windows/stack.yaml - use local pandoc-citeproc. | John MacFarlane | 1 | -1/+1 | |
I'm not sure why this is needed, but it is. Otherwise the build fails. | |||||
2016-01-03 | Updated binary package stack.yamls to ensure pandoc-citeproc... | John MacFarlane | 3 | -3/+3 | |
is built with embed_data_files. This fixes a problem with the original 1.16 binary packages. | |||||
2016-01-02 | Textile reader: don't allow block HTML tags in inline contexts. | John MacFarlane | 3 | -10/+8 | |
The reader previously did allow this, following redcloth, which happily parses Html blocks can be <div>inlined</div> as well. as <p>Html blocks can be <div>inlined</div> as well.</p> This is invalid HTML, and this kind of thing can lead to parsing problems (stack overflows) as well. So this commit undoes this behavior. The above sample now produces; <p>Html blocks can be</p> <div> <p>inlined</p> </div> <p>as well.</p> | |||||
2016-01-02 | Fixed debpkg target. | John MacFarlane | 1 | -1/+1 | |
2016-01-02 | Fixed windows stack.yaml. | John MacFarlane | 1 | -1/+1 | |
2016-01-02 | Updated man page. | John MacFarlane | 1 | -78/+229 | |
2016-01-02 | Updated filter for man pages. | John MacFarlane | 1 | -1/+1 | |
2016-01-02 | Updated stack.yaml files. | John MacFarlane | 5 | -16/+13 | |
Use latest resolver. Use latest pandoc-citeproc and pandoc-types release. | |||||
2016-01-02 | Updated changelog. | John MacFarlane | 1 | -0/+10 | |
2016-01-02 | MediaWiki reader: interpret markup inside `<tt>`, `<code>`. | John MacFarlane | 1 | -4/+6 | |
Closes #2607. | |||||
2016-01-02 | MediaWiki writer: fix spacing issues. | John MacFarlane | 2 | -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-01 | Tweaks to changelog. | John MacFarlane | 1 | -56/+54 | |
2016-01-01 | Updated changelog. | John MacFarlane | 1 | -13/+41 | |
2016-01-01 | Allow process 1.4 | John MacFarlane | 1 | -2/+2 | |
2016-01-01 | Allow binary 0.8 | John MacFarlane | 1 | -1/+1 | |
2016-01-01 | HTML slide templates: add toc. (Andrew Dunning) | John MacFarlane | 1 | -14/+7 | |
2016-01-01 | Relax version bound on HTTP. | John MacFarlane | 1 | -2/+2 | |
2015-12-30 | stack.yaml - use simpler extra-deps field. | John MacFarlane | 5 | -13/+10 | |
2015-12-29 | Use cmark 0.5. | John MacFarlane | 9 | -28/+49 | |
Closes #2605. | |||||
2015-12-23 | Added 'paper' after $papersize$ variable in latex template. | John MacFarlane | 1 | -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-22 | Updated README with margin and papersize variables. | John MacFarlane | 1 | -2/+15 | |
2015-12-22 | ConTeXt writer: set default layout based on margin-left, etc. | John MacFarlane | 1 | -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-22 | LaTeX writer: create defaults for geometry using margin-left etc. | John MacFarlane | 1 | -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-22 | LaTeX reader: allow blank space between braced arguments of commands. | John MacFarlane | 1 | -1/+3 | |
For example \foo {bar} {baz} Closes #2592. | |||||
2015-12-21 | Improved treatment of margins in wkhtmltopdf. | John MacFarlane | 1 | -9/+13 | |
2015-12-21 | Allow setting margins from metadata variables for wkhtmltopdf. | John MacFarlane | 1 | -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-21 | pdf via wkhtmltopdf: take `title` and `page-size` from metadata. | John MacFarlane | 1 | -13/+22 | |
Adjusted default `page-size` to `letter`, to match current LaTeX template. | |||||
2015-12-21 | Added preliminary support for PDF creation via wkhtmltopdf. | John MacFarlane | 3 | -21/+79 | |
To use this: pandoc -t html5 -o result.pdf (and add `--mathjax` if you have math.) | |||||
2015-12-19 | Merge pull request #2598 from twsh/biblatexoptions | John MacFarlane | 1 | -1/+1 | |
Removed hyphen | |||||
2015-12-19 | Updated changelog | John MacFarlane | 1 | -13/+41 | |
2015-12-20 | Removed hyphen | Thomas Hodgson | 1 | -1/+1 | |
2015-12-19 | Beamer: Moved header-includes before setting of title etc. | John MacFarlane | 1 | -7/+7 | |
This matches a change already made in the LaTeX template (Thomas Hodgson). Closes jgm/pandoc-templates#168 | |||||
2015-12-19 | LaTeX/Beamer template changes (Thomas Hodgson): | John MacFarlane | 7 | -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-19 | Added needed import of FromJSON. | John MacFarlane | 1 | -1/+1 | |
Fixes build failure. | |||||
2015-12-19 | Fix language code for Czech (cs not cz) | John MacFarlane | 2 | -2/+1 | |
Closes #2597. | |||||
2015-12-19 | Merge branch 'AndreasLoow-master' | John MacFarlane | 2 | -7/+13 | |
2015-12-19 | Merge branch 'master' of https://github.com/AndreasLoow/pandoc into ↵ | John MacFarlane | 2 | -7/+13 | |
AndreasLoow-master | |||||
2015-12-19 | README: reflowed to avoid overly long lines. | John MacFarlane | 1 | -5/+7 | |
2015-12-19 | Markdown reader: fixed parsing bug with macros. | John MacFarlane | 1 | -1/+1 | |
Previously macro definitions in indented code blocks were being parsed as macro definitions, not code. | |||||
2015-12-19 | Explain how to get `subtitle` to work with latex article etc. | John MacFarlane | 1 | -2/+12 | |
Thanks to Andrew Dunning. | |||||
2015-12-18 | Merge pull request #2593 from mb21/icml-linebreaks | John MacFarlane | 3 | -442/+773 | |
ICML writer: intersperse line breaks | |||||
2015-12-18 | Merge pull request #2594 from adunning/patch-1 | John MacFarlane | 1 | -1/+4 | |
Document change to subtitle in LaTeX. | |||||
2015-12-17 | Document change to subtitle in LaTeX. | Andrew Dunning | 1 | -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-17 | ICML writer: intersperse line breaks | mb21 | 3 | -442/+773 | |
instead of appending them to every ParagraphStyleRange closes #2501 |