Blind entries and sub-entries
Mark entries that only contain links to other entries as blind. They can be identified in the XML because of the absence of sense section role="main" textMatter div1 tags, and also eSub tags when applying to the main entry. Co-subject signpost entries should not be marked as blind.
//e[@blind="y"]
//e[not(section[@role="main"]/textMatter/div1) and not(eSub)and not(descendant::metaDescribes[@predicate="signpost"][.="true"])]
Or,
//eSub[not(section[@role="main"]/textMatter/div1)]
Change these e element entries to have the blind="y" attribute.
Co-subject entries with metaDescribes predicate="signpost" set to 'true' should not be marked as blind entries.
Incorrect
<e id="acref-9780195123456-e-0076" doi="10.1093/acref/9780195123456.013.0076">
<headwordGroup>
<headword>apodosis</headword>
</headwordGroup>
<section role="main"><textMatter>
<div1>
<p>
<xrefGrp>see <xref ref="acref-9780195123456-e-0077-xref-2073" type="2">protasis</xref>
</xrefGrp>.</p>
</div1></textMatter>
</section>
</e>
Correct
<e id="acref-9780195123456-e-0076" blind="y" doi="10.1093/acref/9780195123456.013.0076">
<headwordGroup>
<headword>apodosis</headword>
</headwordGroup>
<section role="crossRef"><textMatter>
<p>
<xrefGrp>see <xref ref="acref-9780195123456-e-0077-xref-2073" type="2">protasis</xref>
</xrefGrp>.</p></textMatter>
</section>
</e>