Hi...
I have problems with meta tag.
The following is the XSL file:
<xsl:template match="Parent">
<html lang="en-sg">
<head><title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
</xsl:template>
the html output is:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
even when I put
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
in the XSL, however the output is still the same as the above.
Anyone can help? Thanks...