fd3809c33f
The renderCslJson function escapes `<`, `>`, and `&` as entities. This is appropriate when generating HTML, but in CSL JSON these are supposed to appear unescaped. Closes jgm/citeproc#17.
167 B
167 B
% pandoc -t csljson
---
references:
- id: foo
type: book
title: "Hi & Low"
...
^D
[
{
"id": "foo",
"title": "Hi & Low",
"type": "book"
}
]