pandoc/test/command/biblatex-266.md
John MacFarlane 641849b70a Be less aggressive about using quotes for YAML values.
We need quotes if `[` or `{` or `'` is at the beginning of
the line, but not otherwise.
2020-10-08 10:54:53 -07:00

34 lines
715 B
Markdown

```
% pandoc -f biblatex -t markdown -s
@book{goethe2005,
langid = {german},
location = {{Frankfurt am Main}},
title = {Not A Real Book},
date = {2005},
author = {family=Goethe, given=Johann Wolfgang, prefix=von, useprefix=false and given=Antonie, prefix=van, family=Leeuwenhoek, useprefix=true}, editor = {Schöne, Albrecht}
}
^D
---
nocite: "[@*]"
references:
- author:
- dropping-particle: von
family: Goethe
given: Johann Wolfgang
- family: Leeuwenhoek
given: Antonie
non-dropping-particle: van
editor:
- family: Schöne
given: Albrecht
id: goethe2005
issued: 2005
language: de-DE
publisher-place: Frankfurt am Main
title: Not A Real Book
type: book
---
```