aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-formatting.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/biblatex-formatting.md')
-rw-r--r--test/command/biblatex-formatting.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/command/biblatex-formatting.md b/test/command/biblatex-formatting.md
new file mode 100644
index 000000000..1fbd5a6a1
--- /dev/null
+++ b/test/command/biblatex-formatting.md
@@ -0,0 +1,23 @@
+```
+% 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'
+---
+
+
+```