diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-19 20:18:06 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-19 20:30:41 -0800 |
commit | ed1173ace6c545f5b98c2b84859db89a6b9e799d (patch) | |
tree | e12d51c062cb0910b63dcf6fb407889058acd9f2 /src/Text/Pandoc/Writers | |
parent | da4103bc42c2b1d41d5b75f70344f1e3c443dbbb (diff) | |
download | pandoc-ed1173ace6c545f5b98c2b84859db89a6b9e799d.tar.gz |
Rationalized behavior of --no-tex-ligatures and --smart.
This change makes `--no-tex-ligatures` affect the LaTeX reader
as well as the LaTeX and ConTeXt writers. If it is used,
the LaTeX reader will parse characters `` ` ``, `'`, and `-`
literally, rather than parsing ligatures for quotation marks
and dashes. And the LaTeX writer will print unicode quotation
mark and dash characters literally, rather than converting
them to the standard ASCII ligatures.
Note that `--smart` has no affect on the LaTeX reader.
`--smart` is still the default for all input formats when
LaTeX or ConTeXt is the output format, *unless* `--no-tex-ligatures`
is used.
Some examples to illustrate the logic:
```
% echo "'hi'" | pandoc -t latex
`hi'
% echo "'hi'" | pandoc -t latex --no-tex-ligatures
'hi'
% echo "'hi'" | pandoc -t latex --no-tex-ligatures --smart
‘hi’
% echo "'hi'" | pandoc -f latex --no-tex-ligatures
<p>'hi'</p>
% echo "'hi'" | pandoc -f latex
<p>’hi’</p>
```
Closes #2541.
Diffstat (limited to 'src/Text/Pandoc/Writers')
0 files changed, 0 insertions, 0 deletions