4842c5fb82
- Recognize locators spelled with a capital letter. Closes #7323. - Add a comma and a space in front of the suffix if it doesn't start with space or punctuation. Closes #7324.
29 lines
353 B
Markdown
29 lines
353 B
Markdown
```
|
|
% pandoc --citeproc -t plain
|
|
---
|
|
references:
|
|
- id: smith
|
|
author: John Smith
|
|
issued: 2019
|
|
title: Insects
|
|
type: book
|
|
...
|
|
|
|
@smith [chap. 6]
|
|
|
|
@smith [chapter 6]
|
|
|
|
@smith [Chap. 6]
|
|
|
|
@smith [Chapter 6]
|
|
^D
|
|
John Smith (2019, chap. 6)
|
|
|
|
John Smith (2019, chap. 6)
|
|
|
|
John Smith (2019, chap. 6)
|
|
|
|
John Smith (2019, chap. 6)
|
|
|
|
John Smith. 2019. Insects.
|
|
```
|