Hi, is it possible to add html style tags to an xml file, and then have those tags be present in the output of a transformation?
Example
Code:
<Article>
<Title>...</Title>
<Category>...</Category>
<Body>
<p>stuff</p>
<ol><li>item</li></ol>
<p>stuff</p>
</Body>
</Article>
How could I make a style sheet to parse the <p> and <ol> elements as html, and in that order. This is just one example, in some cases there may be img tags as well. Is this even possible to do?