1be0f0fba8
Closes #6727.
19 lines
225 B
Markdown
19 lines
225 B
Markdown
```
|
|
% pandoc -f biblatex -t markdown -s
|
|
@video{x1,title={blah}}
|
|
@movie{x2,title={blah}}
|
|
|
|
^D
|
|
---
|
|
nocite: "[@*]"
|
|
references:
|
|
- id: x1
|
|
title: Blah
|
|
type: motion_picture
|
|
- id: x2
|
|
title: Blah
|
|
type: motion_picture
|
|
---
|
|
|
|
|
|
```
|