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

23 lines
424 B
Markdown

```
% pandoc -f biblatex -t markdown -s
@article{item1,
Title = {The Title:
\textit{italics},
\textbf{bold},
\textsubscript{subscript},
\textsuperscript{superscript},
\textsc{small-caps}}
}
^D
---
nocite: "[@*]"
references:
- id: item1
title: "The title: *Italics*, **bold**, ~subscript~, ^superscript^,
[small-caps]{.smallcaps}"
title-short: The title
type: article-journal
---
```