aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-02-01LaTeX writer: avoid `{}` after control sequences when escaping.John MacFarlane4-32/+41
`\ldots{}.` doesn't behave as well as `\ldots.` with the latex ellipsis package. This patch causes pandoc to avoid emitting the `{}` when it is not necessary. Now `\ldots` and other control sequences used in escaping will be followed by either a `{}`, a space, or nothing, depending on context. Thanks to Elliott Slaughter for the suggestion.
2019-02-01doc/lua-filters.md: fix docs for OrderedList itemsAlbert Krewinkel1-3/+1
2019-01-31LaTeX reader: don't let `\egroup` match `{`.John MacFarlane2-3/+15
`braced` now actually requires nested braces. Otherwise some legitimate command and environment definitions can break (see test/command/tex-group.md).
2019-01-31Tests: avoid calling findPandoc multiple times.John MacFarlane3-194/+207
2019-01-31Old tests: remove need for temp files by using pipeProcess.John MacFarlane1-16/+6
2019-01-31More improvements on lua-filters docs.John MacFarlane1-342/+386
2019-01-30linux/Dockerfile : use default -O1 instead of -O2.John MacFarlane1-1/+1
2019-01-30stack.yaml - use latest texmath.John MacFarlane1-0/+1
2019-01-30Update manual.John MacFarlane2-958/+1296
2019-01-30Update changelog.John MacFarlane1-0/+3
2019-01-30Manual: document `date-meta` template variable (#5260)Tristan Stenner1-0/+10
In HTML based formats the `date` metadata variable is converted to ISO 8601 and available as `$date-meta`, but it's not documented at the moment.
2019-01-30Update copyright year in version.John MacFarlane1-1/+1
2019-01-30Use lts-13 in makefileJohn MacFarlane1-1/+1
2019-01-30Update stack.yaml to use lts-13.John MacFarlane1-9/+2
2019-01-30doc/lua-filters.md: use 3rd level headers for module fieldsAlbert Krewinkel1-664/+664
2019-01-30Update changelog.John MacFarlane1-43/+85
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