I want to show story text when a name or picture is clicked in the app. I have created a detail page for this with a Textarea component named "detailedText" and a Back Button in the Header. The text I want to show is contained in xml node elements like so:
code<story>
<H1>The Story of Paul</H1>
<pic>Paul.jpg</pic>
<p>This is line 1 of Paul's story</p>
<p>This is line 2 of Paul's story</p>
<p>This is line 3 of Paul's story</p>
<p>Line 4 of Paul's story has <g>a link</g> inside of it</p>
</story>/code
What do I need to do to be able to show all the items as Html inside the component on the page?