Files
pandoc/test/command/author-in-text-move-note.md
John MacFarlane 96d4f5be51 Citeproc: fix moving punctuation before citation notes.
This previously worked with regular citations, but not author-in-text
citations. Now it works with both.
2025-01-16 08:32:02 -08:00

20 lines
268 B
Markdown

```
% pandoc --citeproc --csl command/chicago-fullnote-bibliography.csl -t plain
---
references:
- id: foo
type: book
author: John Doe
title: A Book
...
See @foo [p. 21], as well.
^D
See John Doe,[1] as well.
John Doe. A Book, n.d.
[1] A Book, n.d., 21.
```