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

52 lines
862 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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:
(Weinberg 1967)
Weinberg, Steven. 1967. “A Model of Leptons.” *Phys. Rev. Lett.* 19:
12641266.
Formatted with pandoc and apa.csl, 2013-10-23:
(Weinberg, 1967)
Weinberg, S. (1967). A model of leptons. *Phys. Rev. Lett.*, *19*,
12641266.
}
@Article{weinberg,
author = {Weinberg, Steven},
title = {A Model of Leptons},
journaltitle = {Phys.~Rev.~Lett.},
date = 1967,
volume = 19,
pages = {1264-1266},
}
^D
---
nocite: "[@*]"
references:
- author:
- family: Weinberg
given: Steven
container-title: Phys. Rev. Lett.
id: weinberg
issued: 1967
page: 1264-1266
title: A model of leptons
type: article-journal
volume: 19
---
```