HTML Minify removes CDATA comments
-
There’s no way to add CDATA to ignored comment stems. They start with
/* <![CDATA[ */
and end with/* ]]> */
. This just breaks a variety of things while html minify is enabled./* <![CDATA[ */ ... /* ]]> */
Ends up when minified as
/* ... /*]]>*/
- The topic ‘HTML Minify removes CDATA comments’ is closed to new replies.