You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The empty links generated by inject_anchors cause accessibility issues. Reference.
Currently the markup results in:
<h2id="heading-one"><aclass="anchor" href="#heading-one" aria-hidden="true"><spanclass="octicon octicon-link"></span></a>
Heading one
</h2>
I would suggest this would be better:
<h2id="heading-one"><aclass="anchor" href="#heading-one" aria-hidden="true"><spanclass="octicon octicon-link">Link to Header one section</span></a>
Heading one
</h2>
The content within the icon is hidden by default.
The text was updated successfully, but these errors were encountered:
The empty links generated by
inject_anchors
cause accessibility issues. Reference.Currently the markup results in:
I would suggest this would be better:
The content within the icon is hidden by default.
The text was updated successfully, but these errors were encountered: