641849b70a
We need quotes if `[` or `{` or `'` is at the beginning of the line, but not otherwise.
20 lines
278 B
Markdown
20 lines
278 B
Markdown
```
|
|
% pandoc -f biblatex -t markdown -s
|
|
@book{item1,
|
|
Title = {The Title: \bibstring{newseries}},
|
|
Hyphenation = {english}
|
|
}
|
|
|
|
^D
|
|
---
|
|
nocite: "[@*]"
|
|
references:
|
|
- id: item1
|
|
language: en-US
|
|
title: "The title: New series"
|
|
title-short: The title
|
|
type: book
|
|
---
|
|
|
|
|
|
```
|