When inserting text and creating a link within the text using the editor button, a code snippet is created which is used to render the link.
Unfortunately the link tag is not rendered correctly in the frontend. A link tag is created within a link tag. Where is the error? Would be grateful for any help.
Kirby Version: 3.6.6
Text editor content:
(link: https://google.com text: Lorem ipsum dolor sit amet)
Output in frontend:
<a href="https://google.com">Lorem ipsum dolor sit amet</a>
Source code in frontend:
<p><a href="<a href="https://google.com">Lorem">https://google.com">Lorem</a> ipsum dolor sit amet</a></p>
Template content:
<?= $page->inhalt()->kt() ?>