Hande 'annote' field in bibtex/biblatex writer.

Closes #7266.
This commit is contained in:
John MacFarlane 2021-05-12 11:05:55 -07:00
parent 46309319ef
commit 0217ae2a4f
2 changed files with 12 additions and 0 deletions

View file

@ -156,6 +156,7 @@ writeBibtexString opts variant mblang ref =
, "langid"
, "abstract"
, "keywords"
, "annote"
]
Bibtex ->
[ "author"
@ -175,6 +176,7 @@ writeBibtexString opts variant mblang ref =
, "address"
, "type"
, "note"
, "annote"
]
valToInlines (TextVal t) = B.text t

10
test/command/7266.md Normal file
View file

@ -0,0 +1,10 @@
```
% pandoc -f biblatex -t biblatex -s
@article{id,
annote = "annotation"
}
^D
@article{id,
annote = {annotation}
}
```