Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-03-13 | LaTeX template: Improve readability (#5363) | Andrew Dunning | 5 | -58/+63 | |
+ LaTeX template: Improve template readability Use `hidelinks` option for hyperref, which has the same effect as `pdfborder={0 0 0}`, but its purpose is clearer. Use a simpler conditional for Polyglossia/Babel. Format comments more consistently. + Update tests + Remove hyperref breaklinks option. According to the documentation, hyperref sets this automatically as appropriate to the driver. | |||||
2019-03-13 | LaTeX reader test: Allow compilation of file (#5364) | Andrew Dunning | 1 | -9/+4 | |
The test could not compile in LaTeX due to missing `setspace` package. Remove redundant packages. | |||||
2019-03-13 | Revise last commit, adding an upper bound for cmark-gfm. | John MacFarlane | 1 | -1/+1 | |
2019-03-13 | Exclude cmark-gfm-hs 0.1.7, which is buggy. | John MacFarlane | 1 | -1/+1 | |
2019-03-12 | Use latest pandoc-citeproc. | John MacFarlane | 2 | -2/+2 | |
2019-03-11 | docx writer: avoid extra copy of abstractNum and num elements... | John MacFarlane | 28 | -1/+9 | |
...in numbering.xml. This caused pandoc-produced docx files to be uneditable using Word Online. The problem was that recent versions of reference.docx include samples of various kinds of text, including lists. The numering elements for these were getting copied over to the new docx, where they clashed with the autogenerated elements produced by pandoc. This didn't confuse Desktop Word, but it did confuse Word Online. Closes #5358. | |||||
2019-03-10 | LaTeX reader: support `\underline`, `\ul`, `\uline` (#5359) | Paul Tilley | 1 | -0/+5 | |
These are parsed as a Span with class `underline`, as with other readers. | |||||
2019-03-10 | ipynb reader: removed vestigial ReaderOptions param. | John MacFarlane | 1 | -18/+16 | |
2019-03-09 | Include execution output in ipynb test. | John MacFarlane | 4 | -8/+29 | |
2019-03-09 | Add recommendation to use `raw_attribute` with ipynb. | John MacFarlane | 1 | -0/+12 | |
See #5354. | |||||
2019-03-09 | ipynb reader: remove sensitivity to `raw_html`, `raw_tex` extensions. | John MacFarlane | 1 | -6/+2 | |
We now include every output format. Pruning is handled by `--ipynb-output=`. | |||||
2019-03-09 | Markdown writer: improve handling of raw blocks/inline. | John MacFarlane | 1 | -34/+55 | |
We now emit raw content using `raw_attribute` when no more direct method is available. | |||||
2019-03-09 | Makefile - remove --resolver from quick target. | John MacFarlane | 1 | -1/+1 | |
2019-03-09 | Ipynb reader/writer: better handling of cell metadata. | John MacFarlane | 5 | -17/+24 | |
We now handle even complex cell metadata in the Div's attributes. Simple metadata fields are rendered as a plain string, and complex ones as JSON. | |||||
2019-03-08 | Allow -o/--output to be used with --print-*. | John MacFarlane | 2 | -22/+38 | |
`--print-default-data-file` `--print-highlighting-style` `--print-default-template` Note that `-o` must occur BEFORE the `--print*` command on the command line (this is documented). Closes #5357. | |||||
2019-03-07 | Update pandoc-citeproc version in cabal.project. | John MacFarlane | 1 | -1/+1 | |
2019-03-07 | Use latest pandoc-citeproc, texmath. | John MacFarlane | 1 | -2/+2 | |
2019-03-07 | Add inNote to Footcite and Footcites | John MacFarlane | 1 | -2/+2 | |
2019-03-07 | Add tectonic as an option for --pdf-engine. (#5346) | Cormac Relf | 4 | -34/+86 | |
Closes #5345 Runs tectonic on STDIN instead of a temporary .tex file, so that it looks in the working directory for `\include` and `\input` like the rest of the engines. Allows overriding the output directory without messing up the args with `--pdf-engine-opt=--outdir --pdf-engine-opt="$DIR"`. | |||||
2019-03-06 | filterIpynbOutput - go back to just including one block per format. | John MacFarlane | 1 | -4/+3 | |
In the end we need a 1-1 map of mime types to output blocks. | |||||
2019-03-06 | Fixed mistake in filterIpynbOutput (prefer lower, not higher rank!) | John MacFarlane | 1 | -4/+3 | |
2019-03-06 | Improve filterIpynbOutput. | John MacFarlane | 1 | -4/+7 | |
- Ensure that images are prioritized over text. - Allow multiple RawBlocks for same format. | |||||
2019-03-06 | ipynb writer: recurse into native divs for output cell data. | John MacFarlane | 1 | -0/+1 | |
See #5354. | |||||
2019-03-06 | Shared.filterIpynbOutput: 'best' should include everything for ipynb. | John MacFarlane | 1 | -1/+5 | |
2019-03-04 | LaTeX writer: Add classes for frontmatter support (#5353) | Andrew Dunning | 1 | -2/+2 | |
Remove frontmatter from scrreprt The KOMA-Script `scrreprt` class follows the pattern of `report`, and does not support `\frontmatter`. Use frontmatter for more classes | |||||
2019-03-04 | LaTeX template: Robust section numbering removal (#5351) | Andrew Dunning | 5 | -5/+5 | |
Ensures that section numbering does not reappear with custom section levels. See <https://tex.stackexchange.com/questions/473653/>. Update tests | |||||
2019-03-04 | LaTeX writer/template: better handling of front/main/backmatter. | John MacFarlane | 2 | -31/+34 | |
In pandoc 2.7 we assumed that every class with chapters would accept `\frontmatter`, `\mainmatter`, and `\backmatter`. This is not so (e.g. report does not). So pandoc 2.7 breaks on report class by including an unsupported command. So we replace the book-class variable in the template with two variables, has-chapters and has-frontmatter, and set these intelligently in the writer. Closes #5348. | |||||
2019-03-03 | Added to AUTHORS.md. | John MacFarlane | 1 | -0/+2 | |
2019-03-03 | Another small changelog fix. | John MacFarlane | 1 | -1/+1 | |
2019-03-03 | Fix typo in changelog. | John MacFarlane | 1 | -1/+2 | |
2019-03-03 | Update manual date, man page, README.md. | John MacFarlane | 3 | -93/+100 | |
2019-03-03 | cabal.project - update pandoc-citeproc version. | John MacFarlane | 1 | -1/+1 | |
2019-03-03 | Update bash completion template. | John MacFarlane | 1 | -1/+5 | |
Added `--ipynb-output` and `latexmk` pdf-engine. | |||||
2019-03-02 | Use latest pandoc-citeproc. Updated cahngelog. | John MacFarlane | 2 | -2/+2 | |
2019-03-02 | Changelog rewording and reformatting. | John MacFarlane | 1 | -40/+49 | |
2019-03-02 | Update changelog. | John MacFarlane | 1 | -44/+141 | |
2019-03-02 | JATS reader: Support fig-group block element (#5317). | John MacFarlane | 1 | -1/+4 | |
2019-03-02 | Add John KetzerX to AUTHORS | John MacFarlane | 1 | -0/+1 | |
2019-03-02 | Require texmath 0.11.2.1 | John MacFarlane | 2 | -2/+2 | |
2019-03-02 | Shared: remove withTempDir. | John MacFarlane | 1 | -17/+0 | |
2019-03-02 | Bump version to 2.7. | John MacFarlane | 1 | -1/+1 | |
2019-03-02 | Use XDG data directory for user data directory. | John MacFarlane | 5 | -30/+27 | |
Instead of `$HOME/.pandoc`, the default user data directory is now `$XDG_DATA_HOME/pandoc`, where `XDG_DATA_HOME` defaults to `$HOME/.local/share` but can be overridden by setting the environment variable. If this directory is missing, then `$HOME/.pandoc` is searched instead, for backwards compatibility. However, we recommend moving local pandoc data files from `$HOME/.pandoc` to `$HOME/.local/share/pandoc`. On Windows the default user data directory remains the same. Closes #3582. | |||||
2019-03-02 | Add new exported function defaultUserDataDirs | John MacFarlane | 1 | -1/+17 | |
2019-03-01 | Update MANUAL on slide shows to reflect changes. | John MacFarlane | 1 | -3/+3 | |
2019-03-01 | LaTeX(Beamer) writer: include contents under headers < slidelevel. | John MacFarlane | 1 | -1/+8 | |
Currently we keep the fancy title slide and add a new slide with the same title and whatever content was under the header. This changes behavior of slides, but is consistent with the new behavior of the revealjs and other HTML slide show writers. See #4317. | |||||
2019-03-01 | HTML writer: include content under title slides. | John MacFarlane | 1 | -7/+9 | |
This facilitates real 2D revealjs slideshows, with content under the top-level slide in each stack. It also enables notes on title slides. Closes #4317 and #5237. | |||||
2019-03-01 | LaTeX template: Add \frontmatter, \mainmatter, \backmatter for book classes. | John MacFarlane | 1 | -0/+9 | |
Closes #5306. | |||||
2019-03-01 | Rearrange --help output in a more rational way. | John MacFarlane | 1 | -279/+280 | |
Closes #5336. | |||||
2019-03-01 | PDF: change types of subsidiary functions to PandocIO,... | John MacFarlane | 1 | -70/+70 | |
...to allow warnings to be threaded through. Additional fix for #5343. | |||||
2019-03-01 | Make `--fail-if-warnings` work for PDF output. | John MacFarlane | 1 | -4/+10 | |
Closes #5343. |