mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
17 lines
711 B
HTML
17 lines
711 B
HTML
<![CDATA[
|
|
Within this Character Data block I can
|
|
use double dashes as much as I want (along with <, &, ', and ")
|
|
*and* %MyParamEntity; will be expanded to the text
|
|
"Has been expanded" ... however, I can't use
|
|
the CEND sequence. If I need to use CEND I must escape one of the
|
|
brackets or the greater-than sign using concatenated CDATA sections.
|
|
]]>
|
|
<div>test</div>
|
|
<![cdata[
|
|
Within this Character Data block I can
|
|
use double dashes as much as I want (along with <, &, ', and ")
|
|
*and* %MyParamEntity; will be expanded to the text
|
|
"Has been expanded" ... however, I can't use
|
|
the CEND sequence. If I need to use CEND I must escape one of the
|
|
brackets or the greater-than sign using concatenated CDATA sections.
|
|
]]> |