pandoc/test/command/biblatex-nussbaum.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

63 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% pandoc -f biblatex -t markdown -s
@comment{
Adapted from biblatex-example.bib
Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
(Nussbaum 1978)
Nussbaum, Martha. 1978. *Aristotles “De Motu Animalium”*. Princeton:
Princeton University Press.
Formatted with pandoc and apa.csl, 2013-10-23:
(Nussbaum, 1978)
Nussbaum, M. (1978). *Aristotles “De Motu Animalium”*. Princeton:
Princeton University Press.
}
@string{ pup = {Princeton University Press} }
@Book{nussbaum,
author = {Nussbaum, Martha},
title = {Aristotle's \mkbibquote{De Motu Animalium}},
date = 1978,
publisher = pup,
location = {Princeton},
keywords = {secondary},
hyphenation = {american},
sorttitle = {Aristotle's De Motu Animalium},
indexsorttitle= {Aristotle's De Motu Animalium},
annotation = {A book entry. Note the sorttitle and
indexsorttitle fields and the markup of the quotes in
the database file},
}
^D
---
nocite: "[@*]"
references:
- annote: A book entry. Note the sorttitle and indexsorttitle fields and
the markup of the quotes in the database file
author:
- family: Nussbaum
given: Martha
id: nussbaum
issued: 1978
keyword: secondary
language: en-US
publisher: Princeton University Press
publisher-place: Princeton
title: "Aristotle's \"De Motu Animalium\""
type: book
---
```