I created a custom extension for TYPO3 CMS.
It basically does some database queries to get text from database.
As I have seen, TYPO3 editor, transforms data before storing it in database so for example a link <a href="....." >Link</a>
is stored as <link href>My Link Text</link>
and so on for many tags like this.
when I query data from DB, I get it as it is stored in DB (<link href>My Link Text</link>
)
so links are not displayed as they shoud. They display as normal text..
As far as I know there are two ways to go:
disable RTE transformations (how to do that?)
use lib.parseFunc_RTE (which i have no Idea how to configure it properly)
any idea? thanks.