TypoScript Snippets
The TYPO3 RTE converts strings starting with "http", "mailto" or "www" automatically to links. Additionally a prefixed "http" will be masked out. This is usually a nice feature. But it's not always nice to have.
This TS snippet (Template/Setup) disables the feature:
lib.parseFunc_RTE.makelinks >
lib.parseFunc_RTE.externalBlocks.ul.stdWrap.parseFunc.makelinks = 0
lib.parseFunc_RTE.externalBlocks.ol.stdWrap.parseFunc.makelinks = 0


