aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-10-23Note expanded support for abstract, keywords.Andrew Dunning1-2/+2
Based on <https://github.com/jgm/pandoc-templates/pull/144>, <https://github.com/jgm/pandoc-templates/pull/142>.
2015-10-22Update LaTeX/ConTeXt variable usage in README.Andrew Dunning1-15/+21
Accounts for changes in https://github.com/jgm/pandoc-templates/pull/141.
2015-10-20Updated tests for latex/context template changes.John MacFarlane6-161/+87
2015-10-20Merge pull request #2467 from adunning/patch-1John MacFarlane1-27/+73
Add new variables for ConTeXt template to README.
2015-10-20Add new variables for ConTeXt template to README.Andrew Dunning1-27/+73
2015-10-20LaTeX template: simplify hyperref usage.John MacFarlane1-7/+7
Andrew Dunning. #139.
2015-10-20ConTeXt template: link color to black, define all sections.John MacFarlane1-7/+7
Andrew Dunning.
2015-10-20Update date on README.John MacFarlane1-1/+1
2015-10-20Allow use of ConTeXt to generate PDFs.John MacFarlane3-14/+91
pandoc my.md -t context -o my.pdf will now create a PDF using ConTeXt rather than LaTeX. Closes #2463.
2015-10-19Fixed one test case.John MacFarlane1-1/+1
2015-10-19Updated latex, beamer templates to support language divs/spans.John MacFarlane1-7/+7
Mainly this adds a template variable that can be filled by commands that make babel understand the polyglossia-style language directives. Thanks to mb21.
2015-10-19Merge pull request #2458 from mb21/lang-inlinesJohn MacFarlane8-38/+430
LaTeX and ConTeXt writers: support lang attribute on divs and spans
2015-10-19Use MarLinn's real name in changelog.John MacFarlane1-1/+1
2015-10-18Updated tests for template changes.John MacFarlane3-3/+3
2015-10-18HTML-based templates: Use en dash between title prefix & title.John MacFarlane1-7/+7
Instead of a hyphen. (Andrew Dunning.)
2015-10-18Merge pull request #2461 from classeur/masterJohn MacFarlane1-5/+5
Fixed auto_identifiers examples
2015-10-18Tests: Unset `pandoc-version` so we don't get the comment...John MacFarlane2-3/+2
in the man writer test. Otherwise this needs updating every version bump.
2015-10-18Man template: make "generated by" comment conditional.John MacFarlane1-7/+7
This allows it to be disabled for automated tests, so they needn't be updated every version bump.
2015-10-18stack.yaml : use 3.10 resolver.John MacFarlane2-4/+2
2015-10-18Added writers-lang-and-dir test, fixed ConTeXt writer testmb215-0/+309
The writers-lang-and-dir testGroup tests LaTeX and ConTeXt writers' language and directionality output
2015-10-18LaTeX and ConTeXt writers: support lang attribute on divs and spansmb213-38/+121
For LaTeX, also collect lang and dir attributes on spans and divs to set the lang, otherlangs and dir variables if they aren’t set already. See #895.
2015-10-18Fixed auto_identifiers examplesBenoit Schweblin1-5/+5
2015-10-17Version bump to 1.15.1.1, updated changelog.John MacFarlane2-1/+8
2015-10-17Text.Pandoc.Data: store paths in dataFiles using posix separators.John MacFarlane1-1/+9
This way we have uniform separators, whether on Windows or Linux. This should solve a problem where on some Windows versions the data files weren't being found. Closes #2459.
2015-10-17Remove compiler warning with embed_data_files.John MacFarlane1-1/+1
2015-10-16Man page update.John MacFarlane1-1/+6
2015-10-16Typo in changelog.John MacFarlane1-1/+1
2015-10-16Fixed typo in make_osx_package.sh.John MacFarlane1-1/+1
2015-10-16make-windows-installer.bat: add copying to shared drive.John MacFarlane1-0/+3
2015-10-16make_osx_package.sh: use released version of pandoc-citeproc.1.John MacFarlane1-1/+4
2015-10-16stack.pkg.yaml: use latest versions of texmath & h-k.John MacFarlane1-1/+4
Also use cpphs in building h-k.
2015-10-16Use stack for make_osx_package.sh.John MacFarlane2-17/+26
Added stack.pkg.yaml for package creation.
2015-10-15LaTeX reader: fixed longtable support.John MacFarlane1-1/+1
2015-10-15Updated changelog.John MacFarlane1-42/+84
2015-10-15Updated pandoc.1.John MacFarlane1-43/+38
2015-10-15Support all frame attributes in Beamer.John MacFarlane2-4/+13
2015-10-15Use unicode super/subscripts for digits in plain output.John MacFarlane2-5/+16
2015-10-14reveal.js template changes (Andrew Dunning).John MacFarlane1-7/+7
- Add width, height variables to reveal.js. - Update reveal.js template from 3.1 source. All configuration options are now available as variables, but are only be included if set (reveal.js uses defaults otherwise).
2015-10-14Merge pull request #2451 from adunning/patch-1John MacFarlane1-27/+13
Update slides variables in README.
2015-10-14Update slides variables in README.Andrew Dunning1-27/+13
This reflects the inclusion of all reveal.js variables in <https://github.com/jgm/pandoc-templates/pull/134>.
2015-10-14Merge pull request #2450 from adunning/patch-1John MacFarlane1-6/+22
Add new LaTeX variables to README.
2015-10-14Add new LaTeX variables to README.Andrew Dunning1-6/+22
2015-10-14LaTeX template: Add fontenc, indent, subparagraph variables.John MacFarlane1-7/+7
Thanks to Andrew Dunning.
2015-10-14More changes to avoid compiler warnings on ghc 7.10.John MacFarlane8-22/+42
* CPP around deprecated `parseTime`. * Text.Pandoc.Compat.Locale -> Text.Pandoc.Compat.Time, now exports Data.Time.
2015-10-14Merge pull request #2449 from adunning/patch-1John MacFarlane1-21/+29
Improve documentation of recent template changes.
2015-10-14travis: use -Werror even on ghc 7.10.John MacFarlane1-1/+1
2015-10-14Use custom Prelude to avoid compiler warnings.John MacFarlane60-113/+59
- The (non-exported) prelude is in prelude/Prelude.hs. - It exports Monoid and Applicative, like base 4.8 prelude, but works with older base versions. - It exports (<>) for mappend. - It hides 'catch' on older base versions. This allows us to remove many imports of Data.Monoid and Control.Applicative, and remove Text.Pandoc.Compat.Monoid. It should allow us to use -Wall again for ghc 7.10.
2015-10-14Improve documentation of recent template changes.Andrew Dunning1-21/+29
2015-10-13LaTeX writer: add `\protect` to `\hyperdef` in inline context.John MacFarlane1-1/+1
This way we don't get an error when this is used as a moveable argument. Closes #2136.
2015-10-13epub with `--webtex`: include image file rather than data: URI.John MacFarlane1-12/+8
Closes #2363.