aboutsummaryrefslogtreecommitdiff
path: root/test/command/citeproc-87.md
blob: 4faa6bfbace764c231f730e74bdf5a0d9d2d51dc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
```
% pandoc --citeproc -Mlang=it-IT -t markdown-citations
Foo [@a 50: «Disse: "bar"»]. «Disse: "baz"»

---
suppress-bibliography: true
references:
- id: a
  author:
    - literal: Aristotele
  title: Metafisica
  type: book
...
^D
Foo (Aristotele, s.d., 50: «Disse: "bar"»). «Disse: "baz"»
```

For en, the localized quotes match what Quoted would produce,
so the Quoted is passed to citeproc as a Span ("",["csl-quoted"],[])
and flipflopping and localization occur.
```
% pandoc -C -t plain -Mlang=en
---
references:
- id: a
  author:
    - literal: Aristotele
  title: Metafisica et "Physica"
  type: article-journal
...

Foo [@a 50].
^D
Foo (Aristotele, n.d., 50).

Aristotele. n.d. “Metafisica Et ‘Physica’.”
```

For cs, there is no such match, so the Quoted is left alone
and has the same effect it would have elsewhere in a pandoc document.
```
% pandoc -C -t plain -Mlang=it
---
references:
- id: a
  author:
    - literal: Aristotele
  title: Metafisica et "Physica"
  type: article-journal
...

Foo [@a 50].
^D
Foo (Aristotele, s.d., 50).

Aristotele. s.d. «Metafisica et “Physica”».
```