aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-01-30Org reader: add support for #+SELECT_TAGS.leungbk8-23/+107
2019-01-30Org reader: separate filtering logic from conversion function.leungbk2-8/+11
2019-01-28Add cpp to avoid warning.John MacFarlane1-1/+6
2019-01-27Add isPrefixOf to imports.John MacFarlane1-1/+1
2019-01-26Improve writing metadata for docx, pptx and odt (#5252)Agustín Martín Barbero45-24/+165
* docx writer: support custom properties. Solves the writer part of #3024. Also supports additional core properties: `subject`, `lang`, `category`, `description`. * odt writer: improve standard properties, including the following core properties: `generator` (Pandoc/VERSION), `description`, `subject`, `keywords`, `initial-creator` (from authors), `creation-date` (actual creation date). Also fix date. * pptx writer: support custom properties. Also supports additional core properties: `subject`, `category`, `description`. * Includes golden tests. * MANUAL: document metadata support for docx, odt, pptx writers
2019-01-26Normalize Windows paths to account for change in ghc 8.6.John MacFarlane1-9/+31
When pandoc is compiled with ghc 8.6, Windows paths are treated differently, and paths beginning `\\server` no longer work. This commit rewrites such patsh to `\\?\UNC\server` which works. The change operates at the level of argument parsing, so it only affects the command line program. See #5127 and the discussion there.
2019-01-25Texinfo writer: use header identifier for anchor if present.John MacFarlane1-2/+4
Previously we were overwriting an existing identifier with a new one. Closes #4731.
2019-01-25MediaWiki reader: use `_` instead of `-` in auto-identifiers.John MacFarlane2-17/+22
Partially addresses #4731. We may not still be exactly matching mediawiki's algorithm for identifiers.
2019-01-25LaTeX writer: add `#` special characeters for listings.John MacFarlane1-1/+1
This character needs special handling in lstinline. Closes #4939.
2019-01-25LaTeX template: Set default listings language for lua, assembler.John MacFarlane2-0/+4
Otherwise we get an error when trying to compile code with lua or assembler code. To change the default dialect (currenty 5.3 for lua and x86masm for assembler), you can use `--include-in-header` to inject something like \lstset{defaultdialect=[5.2]Lua} Closes #5227.
2019-01-25Update ipynb example in manual.John MacFarlane1-17/+19
2019-01-25Revert "CircleCI - use -O0 only for cabal-v2 builds."John MacFarlane1-5/+5
This reverts commit 062a8fb10bf3eb7b92d3b8b942f106293ef24902.
2019-01-25Revert "CircleCI - store artifact from stack build."John MacFarlane1-4/+0
This reverts commit ecccb69ec70b5453936cee106940dbec66daaae0.
2019-01-25Revert "circleci - use .gz for build artifact."John MacFarlane1-2/+2
This reverts commit f28d39efaef7f5d0066a217ac8b320080ca1f032.
2019-01-25circleci - use .gz for build artifact.John MacFarlane1-2/+2
2019-01-25CircleCI - store artifact from stack build.John MacFarlane1-0/+4
2019-01-25CircleCI - use -O0 only for cabal-v2 builds.John MacFarlane1-5/+5
Stack build will not disable optimizations; this way we can create a nightly.
2019-01-25Remove travis.yml.John MacFarlane1-200/+0
2019-01-25Regenerated README.md with CircleCI badge instead of travis.John MacFarlane2-3/+2
2019-01-25Tweaked circleci.John MacFarlane1-5/+6
2019-01-25Fix cabal.project.John MacFarlane1-2/+4
2019-01-25Add some ghc options in circleci config.John MacFarlane1-1/+1
2019-01-25CircleCI: Set workflow version to 2.1.John MacFarlane1-1/+1
2019-01-25Add .circleci config.John MacFarlane1-0/+123
2019-01-25Update pandoc-citeproc commit in stack.yaml.John MacFarlane1-1/+1
2019-01-25cabal.project - set flag defaults, revise pandoc-citeproc commit.John MacFarlane1-1/+5
2019-01-24Ipynb: Put all jupyter metadata under 'jupyter' key.John MacFarlane2-2/+7
2019-01-24Revert "Prepend `jupyter_` to jupyter metadata keys."John MacFarlane2-12/+0
This reverts commit 5eaff399d5d6dc30b0d453eff42c4101674d75ab.
2019-01-24Allow some command line options to take URL in addition to FILE.John MacFarlane2-5/+5
`--include-in-header`, `--include-before-body`, `--include-after-body`
2019-01-24Ms writer: ensure we have a newline after .EN in disply math.John MacFarlane1-1/+1
Closes #5251.
2019-01-24Prepend `jupyter_` to jupyter metadata keys.John MacFarlane2-0/+12
This avoids conflics with things like 'toc'.
2019-01-23Manual: Reorganize template variables (#5249)Andrew Dunning1-208/+305
Add additional headings to categorize variables, and alphabetize when there is large number; add more examples.
2019-01-23Update changelog.John MacFarlane1-3/+37
2019-01-23Update changelog for LaTeX template (#5247)Andrew Dunning1-11/+16
2019-01-23LaTeX template: Restrict `institute` to Beamer (#5219)Andrew Dunning2-7/+6
The `\institute` command is only standard in the Beamer class. Use a conditional to restrict this to Beamer output rather than output an empty command. To add this information to a LaTeX class providing an `\institute` command, use `header-includes`.
2019-01-23Removed superfluous import.John MacFarlane1-1/+0
2019-01-22Support ipynb (Jupyter notebook) as input and output format.John MacFarlane13-9/+638
[API change] * Depend on ipynb library. * Add `ipynb` as input and output format. * Added Text.Pandoc.Readers.Ipynb (supports both nbformat v3 and v4). * Added Text.Pandoc.Writers.Ipynb (supports nbformat v4). * Added ipynb readers and writers to T.P.Readers, T.P.Writers, and T.P.Extensions. Register the file extension .ipynb for this format. * Add `PandocIpynbDecodingError` constructor to Text.Pandoc.Error.Error. * Note: there is no template for ipynb.
2019-01-22LaTeX reader: support `\endinput`. Closes #5233.John MacFarlane2-0/+10
2019-01-22LaTeX template: Use `footnotehyper` if available (#5234)Andrew Dunning2-6/+8
Use the [`footnotehyper`](https://ctan.org/pkg/footnotehyper/) package if available. This is a rewrite of `footnote` that is compatible with `hyperref` and `babel-frenchb`. This patch also addresses the incompatibility with `xcolor` noted in #4861, but the new package has only been available since 2016, so this template still loads `xcolor` earlier for compatibility with older distributions. Note that the `footnote` package is part of `collection-latexrecommended` in TeX Live, so there shouldn't be any problem loading it unconditionally as we now do if `footnotehyper` is not available.
2019-01-22LaTeX template: Respect `numbersections` for books (#5235)Andrew Dunning5-5/+5
Ensure that `\part` and `\chapter` are only numbered if `numbersections` is set. To return to the previous behaviour, use `-V numbersections -V secnumdepth=0`. Notes on secnumdepth: 1 = Number `\section` 0 = Number `\chapter` -1 = Number `\part` -2 = No numbering
2019-01-22Clarify that $ must come right before $. (#5243)Lev E. Givon1-0/+3
2019-01-22Man reader: fix typo. (#5245)Brian Leung1-3/+3
2019-01-22LaTeX template: Fix subtitle spacing (#5244)Andrew Dunning1-1/+1
The `\large` command does not reset the spacing without adding `\par` to the end, which caused `\subtitle` to use the same line spacing as `\title`.
2019-01-21HTML and markdown: treat textarea as a verbatim environment.John MacFarlane3-8/+22
We don't want to parse its contents as Markdown or HTML. Closes #5241.
2019-01-21Mention `raw_attribute` in documentation for `raw_html` and `raw_tex`.John MacFarlane1-0/+7
Thanks to @eiro. Closes #5240.
2019-01-20LaTeX reader: allow includes with dots like cc_by_4.0.John MacFarlane1-3/+5
Previously the `.0` was interpreted as a file extension, leading pandoc not to add `.tex` (and thus not to find the file). The new behavior matches tex more closely.
2019-01-20LaTeX reader: cleaned up 'input' code.John MacFarlane1-10/+5
2019-01-17odt writer: fix typo in custom properties (#5231)Agustín Martín Barbero1-2/+2
fixes #2839
2019-01-16Fix tests for sample custom writer tablesAlbert Krewinkel1-7/+7
2019-01-16sample.lua: Add a missing '>'MichaWiedenmann1-1/+1