aboutsummaryrefslogtreecommitdiff
path: root/test/command/1126.md
AgeCommit message (Collapse)Author
2019-02-01LaTeX writer: avoid `{}` after control sequences when escaping.John MacFarlane
`\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.
2018-08-24HTML reader: allow enabling `raw_tex` extension.John MacFarlane
This now allows raw LaTeX environments, `\ref`, and `\eqref` to be parsed (which is helpful for translation HTML documents using MathJaX). Closes #1126.