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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
```
% pandoc --citeproc -t markdown-citations
---
references:
- author:
- family: ʾUdhrī
given: Jamīl
non-dropping-particle: 'al-'
note: ayn
id: item1
- author:
- family: ʿUdhrī
given: Jamīl
non-dropping-particle: 'al-'
note: hamza
id: item2
- author:
- family: '\''Udhrī'
given: Jamīl
non-dropping-particle: 'al-'
note: straight apostrophe
id: item3
- author:
- family: '‘Udhrī'
given: Jamīl
non-dropping-particle: 'al-'
note: inverted apostrophe = opening single curly quote (for ayn)
id: item4
- author:
- family: '’Udhrī'
given: Jamīl
non-dropping-particle: 'al-'
note: apostrophe = closing single curly quote (for hamza)
id: item5
- author:
- family: Uch
given: Ann
id: item6
- author:
- family: Uebel
given: Joe
id: item7
- author:
- family: Zzz
given: Zoe
id: item8
---
Foo [@item1; @item2; @item3; @item4; @item5; @item6; @item7; @item8].
^D
Foo (al-ʾUdhrī, n.d.; al-ʿUdhrī, n.d.; al-\'Udhrī, n.d.; al-'Udhrī,
n.d.; al-'Udhrī, n.d.; Uch, n.d.; Uebel, n.d.; Zzz, n.d.).
::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item6 .csl-entry}
Uch, Ann. n.d.
:::
::: {#ref-item1 .csl-entry}
ʾUdhrī, Jamīl al-. n.d.
:::
::: {#ref-item2 .csl-entry}
ʿUdhrī, Jamīl al-. n.d.
:::
::: {#ref-item3 .csl-entry}
\'Udhrī, Jamīl al-. n.d.
:::
::: {#ref-item4 .csl-entry}
'Udhrī, Jamīl al-. n.d.
:::
::: {#ref-item5 .csl-entry}
'Udhrī, Jamīl al-. n.d.
:::
::: {#ref-item7 .csl-entry}
Uebel, Joe. n.d.
:::
::: {#ref-item8 .csl-entry}
Zzz, Zoe. n.d.
:::
:::
```
|