Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HeadingPermalinkRenderer Accessibility #1024

Open
ceford opened this issue May 22, 2024 · 6 comments
Open

HeadingPermalinkRenderer Accessibility #1024

ceford opened this issue May 22, 2024 · 6 comments
Labels
discussion Open discussion about a particular feature or proposed change

Comments

@ceford
Copy link

ceford commented May 22, 2024

Description

My System - Joomla Accessibility Checker tells me there is a problem with empty links. I fixed it in:

league/commonmark/src/Extension/HeadingPermalink/HeadingPermalinkRenderer.php

by commenting out line 70 so the href attribute does not appear in the anchor. Could that be right?

Example

    //$attrs->set('href', '#' . $fragmentPrefix . $slug);

Did this project help you today? Did it make you happy in any way?

No response

@ceford ceford added the enhancement New functionality or behavior label May 22, 2024
@samwilson
Copy link

You might be better off finding the markdown that contains an empty link (e.g. Lorem [ipsum]() dolor.) and fixing that instead. Or are you saying that CommonMark should never add an href attribute that's empty?

@ceford
Copy link
Author

ceford commented May 22, 2024

What I am saying is that the Heading PermaLink Extension (https://commonmark.thephpleague.com/2.4/extensions/heading-permalinks/) creates an empty link before or after a heading as the destination of each item in the Contents and accessibility tools flag empty links as a serious error (https://webaim.org/techniques/hypertext/hypertext_links). The destination should not be a link at all and removing the href attribute from the destination tag seems to do just that. But is that the best way to do it?

@samwilson
Copy link

Ah, that makes sense. So you're saying that there are circumstances in which $fragmentPrefix and $slug are both empty strings and the result is just href="#"?

@ceford
Copy link
Author

ceford commented May 22, 2024

This is the code of a heading:

<h2>Introduction<a id="content-introduction" href="#content-introduction" class="heading-permalink" title="Permalink">¶</a></h2>

And this is the Contents item:

<li>
<a href="#content-introduction">Introduction</a>
</li>

It works fine but does not pass accessibility validation.

@colinodell
Copy link
Member

The links are technically not empty, as they do contain a clickable character. (You can also change this string to anything you'd like using the symbol config setting.)

Could you share more details about why Joomla thinks this link is empty? Are they expecting a certain minimum number of characters or something?

@colinodell colinodell added discussion Open discussion about a particular feature or proposed change and removed enhancement New functionality or behavior labels Jul 22, 2024
@ceford
Copy link
Author

ceford commented Jul 22, 2024

Going back to the code of a heading I quoted:

<h2>Introduction<a id="content-introduction" href="#content-introduction" class="heading-permalink" title="Permalink">¶</a></h2>

This is a link that points to itself! I think the heading should really be a target, like this:

<h2 id="content-introduction" class="heading-permalink" >Introduction</h2>

Not sure if the class is really needed!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
discussion Open discussion about a particular feature or proposed change
Projects
None yet
Development

No branches or pull requests

3 participants