641849b70a
We need quotes if `[` or `{` or `'` is at the beginning of the line, but not otherwise.
23 lines
424 B
Markdown
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
|
|
---
|
|
|
|
|
|
```
|