I have a question about the CDATA format.
Is it possible to switch with standard XSLT 1.0 functionality a special CDATA format an identity to a XML Element with Attribute format? Or is there may be a standard XSLT-file for this case?
<TABLE Type="XY_PAIR">
<![CDATA[
| XI YI |
0.0 0.0
10.0 1.0
]]>
</TABLE>
Transform with XSLT 1.0 standard functionality to
<XY_PAIR XI="0.0" YI="0.0"/>
<XY_PAIR XI="10.0" YI="1.0"/>
Thanks for your help!