Looking in our Composite console logs, I see this error on all our pages: "Failed to format output xhtml errors". I traced it back to the Page.aspx.cs call to _renderingContext.FormatXhtml which calls the XhtmlPrettifier.
The XhtmlPrettifier is blowing up on some javascript we have on our master page which is in a CDATA section. At the point of calling the FormatXhtml, the CDATA markup has already been removed.
Does anyone know if:
Brian
The XhtmlPrettifier is blowing up on some javascript we have on our master page which is in a CDATA section. At the point of calling the FormatXhtml, the CDATA markup has already been removed.
Does anyone know if:
- The CDATA markup should be getting to the FormatXhtml function? is this a bug?
- Is the FormatXhtml call doing anything for us?
-
Is there a setting to shut off the FormatXhtml call besides commenting out the line in Page.aspx.cs? Not seeing one...
Brian