Currently revamping a large amount of content in the thousands for a Drupal website. The content includes ordered lists with alphabetical type.
Example:
a. foo
b. bar
c. char
The screen reader is not able to read the "a." or any of the alpha bullet points. Right now, I am using two span tags - one to be hidden from the screen and the other hidden from the screen reader.
<li>
<span class="accessibility-hide-element">B, list item text</span>
<span aria-hidden="true">list item text</span></li>
</li>
Is there a simpler solution? Doing it this way will consume a lot of time. Thanks in advance.