HTML5 tags are not working in RTF field for TRidion 2011
html, tridion, tridion-2011
Solution
For this you can extend the RTF field to allow HTML5 tags for this you have to specify these tags in a file TcmXhtml.Config at the path
[Tridion]\web\WebUI\Core\Controls\FormatArea\TcmXhtml .
Problem
I came across with an issue where RTF field in TRidion 2011 is removing HTML5 tags while saving component. Issue: Source snippet ``` <div> <a class="arrow button" data-role="button" data-inline="true" href="www.google.com">Information</a> </div> ``` Tridion is saving above snippet ``` <div> <a class="arrow button" href="www.google.com">Information</a> </div> ``` In short Tridion is removing HTML5 attribute while saving the component. Please give some hint to resolve above issue.