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.
17 lines
167 B
Markdown
17 lines
167 B
Markdown
```
|
|
% pandoc -t csljson
|
|
---
|
|
references:
|
|
- id: foo
|
|
type: book
|
|
title: "Hi & Low"
|
|
...
|
|
^D
|
|
[
|
|
{
|
|
"id": "foo",
|
|
"title": "Hi & Low",
|
|
"type": "book"
|
|
}
|
|
]
|
|
```
|