I'm trying to use the UrlLinkHandler in Typo3 9.5. So far I've configured my Backend with TCEMain.
TCEMAIN.linkHandler.youtube {
handler = TYPO3\CMS\Recordlist\LinkHandler\UrlLinkHandler
label = Youtube
}
This works fine so far and I can add links within the RTE. For rendering the Link in the frontend my Typoscript looks like this:
config {
recordLinks.youtube {
typolink {
wrap = test|test
}
}
}
But the frontend just shows a regular rendered anchor tag like <a href="http://domain.tld" target="_blank">Link</a>
.
Any hints what I'm doing wrong?