This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: include html code from xml



> My output has to be:
> Politecnico di Torino
> Corso Duca degli Abruzzi 24

You mean in the output like that with no markup, not taht it looks that
way in a browser?

in that case to get from 

<xxx>
<a href= "http://www.polito.it"; class="norm" target="_top">Politecnico 
di Torino</a>
 <br /><a href= "http://www.polito.it/dipartim/autoinfo/itindex.html"; 
class="norm" target="_top">
Dipartimento di Automatica e Informatica</a><br />Corso Duca degli 
Abruzzi 24 <br />
</xxx>


to 

Politecnico di Torino
Corso Duca degli Abruzzi 24


You just want

<xsl:template match="xxx">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="a">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="br">
 <xsl:text>&#10;</xsl:text>
</xsl:template>


actually you only need the last of these as the first two are equivalent
to the default template.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]