- New feature: Added rel="noopener" and rel="noreferrer" options to links.
This is especially useful when opening untrusted links, in order to ensure they cannot tamper with the originating document via the Window.opener property.
'noopener' instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it.
'noreferrer' means that no referrer header will be included. Additionally, has the same effect as noopener. This option may help to improve your Google LightSpeed scores.

- New feature: Added the ability to add the "aria-label" attribute to make links more accessible to people with disabilities. There is no dedicated property, but you can specify the aria-label text in the 'Title' property by using the ^ split character.
Example:
Tooltip text^Label for screenreaders
This will result in the following HTML:
Code: Select all
<a href="./index.html" title="Tooltip text" aria-label="Label for screen readers">This is a link</a>

For more information about aria-label is available here: https://www.w3.org/WAI/WCAG21/Technique ... ARIA8.html