xsl-list
[Top] [All Lists]

RE: Embedding html within xml

2004-03-10 11:26:03
try copy-of instead of value-of... value-of returns the text value of the node, 
which would render the <a> as just "click here."

<!-- copy the contents of the rule -->
<span class="goldmedium"><xsl:copy-of select="./node()"/></span>

Josh
-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]On Behalf Of 
John Reid
Sent: Wednesday, March 10, 2004 5:11 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Embedding html within xml


Took your advice and changed it to 

<rule type="Change of Particulars">To change your particulars. ie change
of address, marital   status etc <a
href="www.defence.gov.au/army/6hsb/h_Particulars.htm">click
here.</a></rule>

But how would I change the below to capture the <a></a>? It does not
exist within every rule

        <ul>
                <xsl:for-each select="rules/rule">
            <li class="strong"><xsl:value-of select="@type" /><br/>
                <span class="goldmedium"><xsl:value-of select="."
/></span></li>
        </xsl:for-each>
        </ul>


-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com] On Behalf Of 
David
Carlisle
Sent: Wednesday, 10 March 2004 10:44 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Embedding html within xml



Usual advice is to change your input format to

<rule type="Change of Particulars">To change your particulars. ie change
of address, marital   status etc <a
href="www.defence.gov.au/army/6hsb/h_Particulars.htm">click
here.</a></rule>

But if that is out of your control then use (if your system supports it)
<xsl:template match="rule">
 <xsl:value-of disable-output-escaping="yes" select="."/>

but complain to someone about your unpleasant input...

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>