When I tab into the following structure, the anchor tag (link) is focused and the screen reader says, list with three items XYZ Anchor. Is is possible to make the screen reader not say "list with three items" and just say "XYZ Anchor"?
<ul class="xyz">
<li class="abc">
<span>AAA</span>
</li>
<li class="def">
<a [href]="getLink(something)" target="_blank">
XYZ Anchor
<span class="xyz">({{ getSomething}})</span>
</a>
</li>
<li class="pqr">
<button class="btn btn-link (click)="openSomething"">
Something
<span class="tko">({{ something }})</span>
</button>
</li>
</ul>