Links without title attribute issue in the RTE Umbraco v13.x.x

Umbraco version 13.9.2

When creating a text link in the RTE without a title attribute, it renders as:
<a&nbsp;href="mailto:[email protected]">mailto:[email protected]</a&nbsp;href="mailto:[email protected]">
obviously making it not a link at all.

But, with a title attribute renders as:
<a href="mailto:[email protected]" &nbsp;title="title">[email protected]</a>

The &nbsp; here doesn’t hurt anything but shouldn’t be there. The link works as intended though so just a minor issue.

This happens when using @Html.Raw(content)

Hi,

How are you getting content? As the rich text provides an IHtmlString you shouldn’t need Html.Raw at all

Matt