Hello all,
I receive a XML file from a customer which I have need to display inside a webpage (formatting xsl).
The problem is: the xml contains a hyperlink in html format (see example below) If I create a link using the code :
<xsl:template match="a">
<A href="{.}" target="_blank"><xsl:value-of select="."/></A>
</xsl:template>
,the result is a link to Yahoo instead of
is there a way to make the link work?
Many thanks in advance!
The source of the xml is (example):
<Paragraph StyleName="Source">
- <Text>
Source:
<a href=" - Google,
<a href=" </Text>
</Paragraph>
I receive a XML file from a customer which I have need to display inside a webpage (formatting xsl).
The problem is: the xml contains a hyperlink in html format (see example below) If I create a link using the code :
<xsl:template match="a">
<A href="{.}" target="_blank"><xsl:value-of select="."/></A>
</xsl:template>
,the result is a link to Yahoo instead of
is there a way to make the link work?
Many thanks in advance!
The source of the xml is (example):
<Paragraph StyleName="Source">
- <Text>
Source:
<a href=" - Google,
<a href=" </Text>
</Paragraph>