-
-
Notifications
You must be signed in to change notification settings - Fork 74
Open
Labels
Description
This is an issue that currently affects the production blog, so it could be done after the release 👍
If you look at any of the Ember Times posts you will see that all of the headers are also links. This is not the best experience from an accessibility perspective and we need to change the structure of these headers
Right now the HTML is something like this:
<h2 data-embertimes-section-title="0"><a href="https://jamescdavis.com/using-ember-concurrency-with-typescript/">Using ember-concurrency with TypeScript 🤝</a></h2>
and we should really change it to something more like:
<h2 data-embertimes-section-title="0">Using ember-concurrency with TypeScript 🤝</h2>
<a href="https://jamescdavis.com/using-ember-concurrency-with-typescript/">External Link (->)</a>
Once we figure out how this should work in the Markdown then we should write some sort of script to update all of the posts that have this problem
Example: