I'm working on a script for InDesign, and I'm pulling in content from an xml file. How would I parse and create the separate paragraphs in xml like this:
...
<body>
<p>this is a paragraph</p>
<p>this is another paragraph</p>
<u>This is underlined text</u>
</body>
....
I'm accessing the data with xml.body
using the XML class (EX4?). Would I have to create some sort of custom parser for this to create different paragraphs? Should I be storing this as CData?