citeproc-0.1: test/csl/disambiguate_ImplicitYearSuffixOnceOnly.txt
>>===== MODE =====>>
bibliography
<<===== MODE =====<<
When year-suffix is implicit (the CSL 0.8.1 legacy mode),
the suffix should be rendered only the first time a date
is printed in the cite.
>>===== RESULT =====>>
<div class="csl-bib-body">
<div class="csl-entry">[1990a] Doe, Book A 05/30/1990</div>
<div class="csl-entry">[1990b] Doe, Book B 05/30/1990</div>
</div>
<<===== RESULT =====<<
>>===== CSL =====>>
<style
xmlns="http://purl.org/net/xbiblio/csl"
class="note"
version="1.0">
<info>
<id />
<title />
<updated>2009-08-10T04:49:00+09:00</updated>
</info>
<citation
disambiguate-add-year-suffix="true">
<layout delimiter="; " prefix="(" suffix=")">
<group delimiter=" ">
<names variable="author">
<name form="short"/>
</names>
<date variable="issued" date-parts="year" form="text"/>
</group>
</layout>
</citation>
<bibliography>
<layout>
<group delimiter=" ">
<date date-parts="year" form="text" variable="issued" prefix="[" suffix="]"/>
<group delimiter=", ">
<names variable="author">
<name form="short"/>
</names>
<text variable="title"/>
</group>
<date form="numeric" variable="issued"/>
</group>
</layout>
</bibliography>
</style>
<<===== CSL =====<<
>>===== INPUT =====>>
[
{
"author": [
{
"family": "Doe",
"given": "John"
}
],
"id": "ITEM-1",
"issued": {
"date-parts": [
[
"1990",
"5",
"30"
]
]
},
"title": "Book A",
"type": "book"
},
{
"author": [
{
"family": "Doe",
"given": "John"
}
],
"id": "ITEM-2",
"issued": {
"date-parts": [
[
"1990",
"5",
"30"
]
]
},
"title": "Book B",
"type": "book"
}
]
<<===== INPUT =====<<
>>===== VERSION =====>>
1.0
<<===== VERSION =====<<