This question has to have come up before, but I'm having a heck of time trying to find any threads on the subject. I'm using the VFE to allow users to enter data in a free form format. They can change fonts, use bulleted lists, etc. In the resulting DCR this is all stored in the various <value> nodes as the character entities, i.e. for a bulleted list it shows up as:
< ;ul> ;< ;li> ;List Item< ;/li> ;< ;/ul> ;
(I had to put spaces in before each semi-colon to keep the system from interpreting the character entities)
The file I am generating is another XML file and I'd like to put the value exactly as it appears in the DCR into the resulting XML file. What's happening instead is when I use an <iw_value> in the presentation template my resulting XML ends up looking something like this:
<sampleNode><ul><li>List Item</li></ul></sampleNode>
This isn't what I want at all. I want this:
<sampleNode>
< ;ul> ;< ;li> ;List Item< ;/li> ;< ;/ul> ;
</sampleNode>
(Had to use spaces again)
So, is there a way to keep the character entities from being converted to their equivalent HTML characters when generating a file? I really hope this makes sense and I've communicated what it is I'm trying to accomplish. Thanks!