Allow both inline and external references to be used

with `--citeproc`.  This fixes a regression, since pandoc-citeproc
allowed these to be combined.

Closes #6951.
This commit is contained in:
John MacFarlane
2020-12-15 08:51:43 -08:00
parent 03c897c7ee
commit 7d799bfcda
2 changed files with 33 additions and 14 deletions
+18
View File
@@ -0,0 +1,18 @@
```
% pandoc --citeproc -t plain --bibliography command/biblio.bib
---
references:
- id: foo
title: Crazy
type: book
...
[@foo; @item1]
^D
(Crazy, n.d.; Doe 2005)
Crazy. n.d.
Doe, John. 2005. First Book. Cambridge: Cambridge University Press.
```