citeproc-0.3.0.4: test/csl/name_InTextMarkupNormalizeInitials.txt
>>===== MODE =====>>
bibliography
<<===== MODE =====<<
>>===== RESULT =====>>
<div class="csl-bib-body">
<div class="csl-entry"><b>Doe</b>, <b>J.</b> Q.</div>
<div class="csl-entry"><b>Doe</b>, <b>J.</b>-Q.</div>
</div>
<<===== RESULT =====<<
>>===== CSL =====>>
<style
xmlns="http://purl.org/net/xbiblio/csl"
class="in-text"
version="1.0">
<info>
<id />
<title />
<updated>2009-08-10T04:49:00+09:00</updated>
</info>
<macro name="author">
<names variable="author">
<name name-as-sort-order="all" and="symbol" sort-separator=", " initialize-with=". " delimiter=", " delimiter-precedes-last="always"/>
</names>
</macro>
<citation>
<layout>
<text macro="author"/>
</layout>
</citation>
<bibliography>
<layout>
<text macro="author"/>
</layout>
</bibliography>
</style>
<<===== CSL =====<<
>>===== INPUT =====>>
[
{
"author": [
{
"family": "<b>Doe</b>",
"given": "<b>J</b> Q"
}
],
"id": "ITEM-1",
"type": "book"
},
{
"author": [
{
"family": "<b>Doe</b>",
"given": "<b>J</b>-Q"
}
],
"id": "ITEM-2",
"type": "book"
}
]
<<===== INPUT =====<<