How to deal with an inline XML element.

wxdqz

New Member
I am using an element called <fraction> in my XML. For example, if the fraction is 7 1/2, the element would read <fraction whole="7" num="1" den="2" />. If it was in an element called <pgrph>, how would I use XSL to get it to show up within the text? Like this:

<pgrph>text text text <fraction whole="7" num="1" den="2" /> text text text</pgrph>

Resulting in:

text text text 7 1/2 text text text
 
Back
Top