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

59 lines
1.3 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:
(Piccato 2001)
Piccato, Pablo. 2001. *City of Suspects: Crime in Mexico City,
19001931*. Durham; London: Duke University Press.
Formatted with pandoc and apa.csl, 2013-10-23:
(Piccato, 2001)
Piccato, P. (2001). *City of suspects: Crime in Mexico City, 19001931*.
Durham; London: Duke University Press.
}
@Book{piccato,
author = {Piccato, Pablo},
title = {City of Suspects},
date = 2001,
publisher = {Duke University Press},
location = {Durham and London},
hyphenation = {american},
subtitle = {Crime in {Mexico City}, 1900--1931},
shorttitle = {City of Suspects},
annotation = {This is a book entry. Note the format of the
location field in the database file},
}
^D
---
nocite: "[@*]"
references:
- annote: This is a book entry. Note the format of the location field in
the database file
author:
- family: Piccato
given: Pablo
id: piccato
issued: 2001
language: en-US
publisher: Duke University Press
publisher-place: Durham; London
title: "City of suspects: Crime in Mexico City, 1900--1931"
title-short: City of suspects
type: book
---
```