In the display mode, I type the text and hit enter or highlight it and and make it bold. I hit the HTML button and all looks good. I save it. I view it on the website and the HTML is being displayed as plain text. Is there some setting I have it at that is allowing the HTML to be displayed as plain text?
I had similar problem, that i had to make...create a xslt file: with next code:
<xsl:variable name="text" select="$currentPage/Content"/><!--Content is the name of my RTE--> <xsl:value-of select="$text" disable-output-escaping="yes"/>
and just call the macro on your template or Richt Text Editor
Rich Text Editor displays the HTML
In the display mode, I type the text and hit enter or highlight it and and make it bold. I hit the HTML button and all looks good. I save it. I view it on the website and the HTML is being displayed as plain text. Is there some setting I have it at that is allowing the HTML to be displayed as plain text?
I had similar problem, that i had to make...create a xslt file: with next code:
<xsl:variable name="text" select="$currentPage/Content"/><!--Content is the name of my RTE-->
<xsl:value-of select="$text" disable-output-escaping="yes"/>
and just call the macro on your template or Richt Text Editor
hope this can help you.
Hey Cristian,
That worked! Thanks for the pointer.
This does seem to me like a short term fix, shouldn't the rich editor inherintly not have this issue?
yes, i dont now why some html tags dont be reconized by rtb i hope in new version we donĀ“t need to do this
is working on a reply...