aboutsummaryrefslogtreecommitdiff
path: root/test/command/6752.md
blob: b2d51d2ca6d948f4eed565906ca2d7434b6fa769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
```
% pandoc -f biblatex -t csljson
@xdata{XDPubAlfredAKnopf,
    publisher   = {Alfred A.~Knopf},
    address     = {New York, NY}
}
@book{Klinkenborg2012,
    author      = {Verlyn Klinkenborg},
    title       = {Several short sentences about writing},
    date        = {2012},
    xdata       = {XDPubAlfredAKnopf},
}
^D
[
  {
    "author": [
      {
        "family": "Klinkenborg",
        "given": "Verlyn"
      }
    ],
    "id": "Klinkenborg2012",
    "issued": {
      "date-parts": [
        [
          2012
        ]
      ]
    },
    "publisher": "Alfred A. Knopf",
    "publisher-place": "New York, NY",
    "title": "Several short sentences about writing",
    "type": "book"
  }
]
```