From fd3809c33f663627f43168d347c7f2690a74b56f Mon Sep 17 00:00:00 2001 From: John MacFarlane <jgm@berkeley.edu> Date: Tue, 6 Oct 2020 22:28:22 -0700 Subject: Unescape entities in writing CSL JSON. 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. --- test/command/citeproc-17.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/command/citeproc-17.md (limited to 'test') diff --git a/test/command/citeproc-17.md b/test/command/citeproc-17.md new file mode 100644 index 000000000..d80550f81 --- /dev/null +++ b/test/command/citeproc-17.md @@ -0,0 +1,17 @@ +``` +% pandoc -t csljson +--- +references: +- id: foo + type: book + title: "Hi & Low" +... +^D +[ + { + "id": "foo", + "title": "Hi & Low", + "type": "book" + } +] +``` -- cgit v1.2.3