I am using TYPO3 6.0.0.I have in my database some text which contains HTML tags like the following. The data was inserted into the MySQL tables from CSV files. \[code\] <a href=http://www.plus2net.com>HTML Tutorials</a> <br> <br> <a href=http://www.plus2net.com>HTML Tutorials</a> <br> <br> <br> <br> <a href=http://www.plus2net.com>HTML Tutorials</a> <br> <br> <br> <br> <a href=http://www.plus2net.com>HTML Tutorials</a>\[/code\]I tried giving the tags in both the ways as shown above, but both of them show the following in the front end: \[code\] <a href=http://www.plus2net.com>HTML Tutorials</a> <br> <br> <br> <br> <a href=http://www.plus2net.com>HTML Tutorials</a> <br> <br> <br> <br> <a href=http://www.plus2net.com>HTML Tutorials</a>\[/code\]All the HTML tags are shown as they are in the database. How do I make it html safe or something of that sort ?