Should you use an aria label within an abbreviation?
Example, UH is the abbreviation for University of Hawaiʻi. In locations where there is a use of diacritical marks, I am using an aria-label. But does it make sense to use the aria-label within the abbreviation? Or can I simply explain the abbreviation without the diacritical mark?
Combine the following:
<span aria-label="Hawaii">Hawaiʻi</span>
(with the diacritical mark)
and the abbreviation <abbr title=“University of Hawaii”>UH</abbr>
To make:
<abbr title=“University of <span aria-label="Hawaii">Hawaiʻi</span>”UH</abbr>
Or simplified?
<abbr title=“University of Hawaii”>UH</abbr>
with no diacritical marks