Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-11-24 | Update date in manual and update man page. | John MacFarlane | 1 | -1/+1 | |
2018-11-21 | MANUAL: Fix outdated description of latex_macros extension. | John MacFarlane | 1 | -1/+1 | |
2018-11-19 | MANUAL.txt: Clarified placement of bibliography. | John MacFarlane | 1 | -4/+17 | |
2018-11-15 | MANUAL: Under security, added note about +RTS option to limit heap size. | John MacFarlane | 1 | -0/+3 | |
See #5047. | |||||
2018-11-13 | Fix note on curly brace syntx for locators. | John MacFarlane | 1 | -2/+2 | |
2018-11-12 | Document new explicit syntax for citeproc locators. | John MacFarlane | 1 | -0/+7 | |
2018-11-11 | Text.Pandoc.Shared: add parameter to uniqueIdent, inlineListToIdentifier. | John MacFarlane | 1 | -9/+24 | |
The parameter is Extensions. This allows these functions to be sensitive to the settings of `Ext_gfm_auto_identifiers` and `Ext_ascii_identifiers`. This allows us to use `uniqueIdent` in the CommonMark reader, replacing some custom code. It also means that `gfm_auto_identifiers` can now be used in all formats. Semantically, `gfm_auto_identifiers` is now a modifier of `auto_identifiers`; for identifiers to be set, `auto_identifiers` must be turned on, and then the type of identifier produced depends on `gfm_auto_identifiers` and `ascii_identifiers` are set. Closes #5057. | |||||
2018-11-11 | Remove `ascii_identifiers` from `githubMarkdownExtensions`. | John MacFarlane | 1 | -1/+1 | |
GitHub doesn't seem to strip non-ascii characters. | |||||
2018-11-05 | MANUAL.txt: remove confusing cross-links for some extensions. | John MacFarlane | 1 | -4/+4 | |
I think the text comment to look in the pandoc markdown section is enough. | |||||
2018-11-05 | MANUAL: don't put pandoc in code ticks in heading. | John MacFarlane | 1 | -2/+2 | |
2018-11-05 | MANUAL.txt: --ascii works for gfm too. | John MacFarlane | 1 | -1/+1 | |
2018-11-05 | CommonMark writer: respect --ascii (#5043) | quasicomputational | 1 | -7/+6 | |
2018-11-05 | MANUAL.txt: added "A note on security." | John MacFarlane | 1 | -0/+30 | |
2018-11-04 | MANUAL.txt: add `man` to `--from` options. | John MacFarlane | 1 | -0/+1 | |
2018-11-03 | Document romanfont, romanfontoptions. | John MacFarlane | 1 | -2/+2 | |
2018-11-03 | AsciiDoc writer: use single-line section headers. | John MacFarlane | 1 | -1/+1 | |
The underline style is now deprecated. Previously `--atx-headers` would enable the single-line style; now the single-line style is always used. Closes #5038. | |||||
2018-11-01 | Update manual date and man page. | John MacFarlane | 1 | -1/+1 | |
2018-11-01 | Change 'groff' -> 'roff'. | John MacFarlane | 1 | -8/+8 | |
These formats (man, ms) are not groff-specific. | |||||
2018-11-01 | Implement --ascii for Markdown writer. | John MacFarlane | 1 | -5/+5 | |
2018-11-01 | HTML writer: use character entities references when possible for HTML5. | John MacFarlane | 1 | -1/+1 | |
2018-11-01 | MANUAL: clarify LaTeX image dimensions output | Mauro Bieg | 1 | -4/+6 | |
2018-10-28 | small wording change | John MacFarlane | 1 | -2/+2 | |
2018-10-28 | EPUB writer: use metadata field `css` instead of `stylesheet` | mb21 | 1 | -3/+3 | |
closes #4990 | |||||
2018-10-18 | Groff escaping changes. | John MacFarlane | 1 | -3/+4 | |
- `--ascii` is now turned on automatically for man output, for portability. All man output will be escaped to ASCII. - In T.P.Writers.Groff, `escapeChar`, `escapeString`, and `escapeCode` now take a boolean parameter that selects ascii-only output. This is used by the Ms writer for `--ascii`, instead of doing an extra pass after writing the document. - In ms output without `--ascii`, unicode is used whenever possible (e.g. for double quotes). - A few escapes are changed: e.g. `\[rs]` instead of `\\` for backslash, and `\ga]` instead of `` \` `` for backtick. | |||||
2018-10-05 | CommonMark writer: add plain text fallbacks. (#4531) | quasicomputational | 1 | -2/+8 | |
Previously, the writer would unconditionally emit HTMLish output for subscripts, superscripts, strikeouts (if the strikeout extension is disabled) and small caps, even with raw_html disabled. Now there are plain-text (and, where possible, fancy Unicode) fallbacks for all of these corresponding (mostly) to the Markdown fallbacks, and the HTMLish output is only used when raw_html is enabled. This commit adds exported functions `toSuperscript` and `toSubscript` to `Text.Pandoc.Writers.Shared`. [API change] Closes #4528. | |||||
2018-09-30 | Implement `--ascii` (`writerPreferAscii`) in writers, not App. | John MacFarlane | 1 | -2/+4 | |
Now the `write*` functions for Docbook, HTML, ICML, JATS, Man, Ms, OPML are sensitive to `writerPreferAscii`. Previously the to-ascii translation was done in Text.Pandoc.App, and thus not available to those using the writer functions directly. In addition, the LaTeX writer is now sensitive to `writerPreferAscii` and to `--ascii`. 100% ASCII output can't be guaranteed, but the writer will use commands like `\"{a}` and `\l` whenever possible, to avoid emiting a non-ASCII character. A new unexported module, Text.Pandoc.Groff, has been added to store functions used in the different groff-based writers. | |||||
2018-09-27 | Version to 2.3.1. | John MacFarlane | 1 | -1/+1 | |
2018-09-27 | MANUAL: epub:type is only useful for epub3 | Mauro Bieg | 1 | -3/+3 | |
2018-09-18 | Add .options class to option headers in manual. | John MacFarlane | 1 | -7/+7 | |
This will allow autogeneration of ids for particular options in the manual. | |||||
2018-09-16 | MANUAL: use https for context wiki links. | John MacFarlane | 1 | -11/+11 | |
Otherwise the wiki won't redirect. Closes #4910. | |||||
2018-09-16 | Update manual date and man page. | John MacFarlane | 1 | -1/+1 | |
2018-09-15 | Merge pull request #4604 from mb21/yaml-file | John MacFarlane | 1 | -1/+13 | |
Introduce --metadata-file option | |||||
2018-09-15 | MANUAL: clarify that --biblatex/--natbib don't work directly for PDF. | John MacFarlane | 1 | -5/+6 | |
Closes #4904. | |||||
2018-09-15 | introduce --metadata-file option | mb21 | 1 | -1/+13 | |
closes #1960 API change: Text.Pandoc.Readers.Markdown exports now `yamlToMeta` | |||||
2018-09-14 | MANUAL.txt epub:type attribute (#4901) | Mauro Bieg | 1 | -0/+40 | |
2018-09-06 | MANUAL: Clarify when `--resource-path` has an effect. | John MacFarlane | 1 | -0/+5 | |
2018-09-05 | Document encoding issue with `--listings` (#4873) | damien clochard | 1 | -1/+6 | |
Document encoding issue with `--listings`. Closes #4871. | |||||
2018-08-30 | MANUAL: remove docs on removed --katex-stylesheet | Mauro Bieg | 1 | -8/+3 | |
closes #4862 | |||||
2018-08-25 | Add support for $toc-title$ to LaTeX (and PDF). (#4853) | Wandmalfarbe | 1 | -1/+1 | |
2018-08-24 | HTML reader: allow enabling `raw_tex` extension. | John MacFarlane | 1 | -1/+2 | |
This now allows raw LaTeX environments, `\ref`, and `\eqref` to be parsed (which is helpful for translation HTML documents using MathJaX). Closes #1126. | |||||
2018-08-16 | LaTeX writer/template: be sensitive to `filecolor` variable. | John MacFarlane | 1 | -6/+8 | |
`linkcolor` only affects internal links, and `urlcolor` only affects linked URLs. For external links, the option to use is `filecolor`. Closes #4822. | |||||
2018-08-15 | Support "toc-title" in the beamer template. (#4835) | Cyril Roelandt | 1 | -1/+1 | |
It is a bit awkward to have a title for every frame, but not for the one that holds the table of contents. Allow users to specify a title if they wish. | |||||
2018-08-11 | MANUAL: more detail on customization in syntax highlighting section. | John MacFarlane | 1 | -3/+21 | |
2018-08-07 | Bump to 2.2.3.2, update man page, changelog. | John MacFarlane | 1 | -1/+1 | |
2018-08-06 | Bump to 2.2.3.1, update man page and changelog. | John MacFarlane | 1 | -1/+1 | |
2018-08-05 | Bump to 2.2.3, update changelog and man page. | John MacFarlane | 1 | -1/+1 | |
2018-07-31 | MANUAL: Add beamer info for slide backgrounds (#4802) | John Muccigrosso | 1 | -12/+16 | |
2018-07-21 | MANUAL: Clarify when csquotes is used in LaTeX writer. | John MacFarlane | 1 | -3/+4 | |
Closes #4514. | |||||
2018-07-21 | MANUAL: Added commonmark to list of output formats where... | John MacFarlane | 1 | -1/+1 | |
`raw_tex` has an effect. See #4527. | |||||
2018-07-19 | Update man page, changelog, authors. | John MacFarlane | 1 | -1/+1 | |