How can I use XSL to view the following XML like this:
1<font color="0000FF">2</font>3<font color="0000FF">4</font>5
============= test.xml =====================
<?xml version = "1.0"?>
<?xml:stylesheet type = "text/xsl" href = "test.xsl"?>
<!DOCTYPE format [
<!ELEMENT p ( #PCDATA | s )* >
<!ELEMENT s ( #PCDATA ) >
]>
<p>
1
<s>2</s>
3
<s>4</s>
5
</p>
=============== test. xsl ======================
<?xml version="1.0" ?>
<xsl:stylesheet version = "1.0" xmlns:xsl = "
<xsl:template match="p">
<xsl:value-of select="."/>
<xsl:for-each select="COREF">
<font COLOR="#0000FF">
<xsl:value-of select="."/>
</font>
</xsl:for-each>
<xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>
1<font color="0000FF">2</font>3<font color="0000FF">4</font>5
============= test.xml =====================
<?xml version = "1.0"?>
<?xml:stylesheet type = "text/xsl" href = "test.xsl"?>
<!DOCTYPE format [
<!ELEMENT p ( #PCDATA | s )* >
<!ELEMENT s ( #PCDATA ) >
]>
<p>
1
<s>2</s>
3
<s>4</s>
5
</p>
=============== test. xsl ======================
<?xml version="1.0" ?>
<xsl:stylesheet version = "1.0" xmlns:xsl = "
<xsl:template match="p">
<xsl:value-of select="."/>
<xsl:for-each select="COREF">
<font COLOR="#0000FF">
<xsl:value-of select="."/>
</font>
</xsl:for-each>
<xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>