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

66 lines
1.5 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:
(Shore 1991)
Shore, Bradd. 1991. “Twice-born, Once Conceived: Meaning Construction
and Cultural Cognition.” *American Anthropologist, New Series* 93 (1)
(March): 927.
Formatted with pandoc and apa.csl, 2013-10-23:
(Shore, 1991)
Shore, B. (1991). Twice-born, once conceived: Meaning construction and
cultural cognition. *American Anthropologist, new series*, *93*(1),
927.
}
@Article{shore,
author = {Shore, Bradd},
title = {Twice-Born, Once Conceived},
journaltitle = {American Anthropologist},
date = {1991-03},
subtitle = {Meaning Construction and Cultural Cognition},
series = {newseries},
volume = 93,
number = 1,
pages = {9-27},
annotation = {An article entry with series,
volume, and number fields. Note the format
of the series which is a localization key},
}
^D
---
nocite: "[@*]"
references:
- annote: An article entry with series, volume, and number fields. Note
the format of the series which is a localization key
author:
- family: Shore
given: Bradd
collection-title: new series
container-title: American Anthropologist
id: shore
issue: 1
issued: 1991-03
page: 9-27
title: "Twice-born, once conceived: Meaning construction and cultural
cognition"
title-short: Twice-born, once conceived
type: article-journal
volume: 93
---
```