pandoc/test/command/pandoc-citeproc-322.md
John MacFarlane 851d037b3e Improve punctuation moving with --citeproc.
Previously, using `--citeproc` could cause punctuation to move in
quotes even when there aer no citations. This has been changed;
now, punctuation moving is limited to citations.

In addition, we only move footnotes around punctuation if the
style is a note style, even if `notes-after-punctuation` is `true`.
2021-06-28 22:41:14 -07:00

35 lines
777 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% pandoc --citeproc -t markdown-citations
---
csl: command/annales.csl
references:
- author:
- family: Timmory
given: François
container-title: 'L''Écran français'
id: timmory\_\_justice_1950
issue: 272
issued:
- day: 25
month: 9
year: 1950
language: 'fr-FR'
page: 12
title: '*Justice est faite* : soyons justes'
type: 'article-journal'
---
Foo [@timmory__justice_1950].
^D
Foo.[^1]
::: {#refs .references .csl-bib-body}
::: {#ref-timmory__justice_1950 .csl-entry}
François [Timmory]{.smallcaps}, « *Justice est faite* : soyons justes »,
*L'Écran français*, 1950, nᵒ 272, p. 12.
:::
:::
[^1]: François [Timmory]{.smallcaps}, « *Justice est faite* : soyons
justes », *L'Écran français*, 1950, nᵒ 272, p. 12.
```