I have extension to use file.xsl.
The output method is html.
When i write directly in xsl :
Code: Select all
<p class="link">For more information follow <a href="http://www.mywebsite.com" target="_blank">this link</a></p>
Code: Select all
<p class="link"><xsl:value-of select="LINK" /></p>
Code: Select all
For more information follow [url]this link[/url].
the link doesn't work.
In the source of the web page, all the signs in the link appear coded.
Code: Select all
<p class="link"><font style="color:#000000;font-family:MS Shell Dlg;font-size:16px">For more information follow <a href="http://www.mywebsite.com">this link</a></font></p>
Thank you very much.