pandoc/test/command/pandoc-citeproc-page-range.md
2020-10-01 22:07:55 -07:00

32 lines
595 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/chicago-fullnote-bibliography.csl'
references:
- URL: 'https://johnmacfarlane.net/vagueness.pdf'
id: test1
- URL: 'https://pandoc.org'
id: test2
- URL: 'https://johnmacfarlane.net'
id: test3
suppress-bibliography: true
---
Test 1 [@test1, pp. 93--101].
Test 2 [@test2, pp. 93--101].
Test 3 [@test3, pp. 93-101].
^D
Test 1.[^1]
Test 2.[^2]
Test 3.[^3]
[^1]: N.d., 93--101, <https://johnmacfarlane.net/vagueness.pdf>.
[^2]: N.d., 93--101, <https://pandoc.org>.
[^3]: N.d., 93--101, <https://johnmacfarlane.net>.
```