Re: [xml-dev] Converting XML

From
Bruce D'Arcus <>
To
Date
2004-12-28T21:03:38Z
ID
<>
Thread
Re: [xml-dev] Converting XML
On Dec 28, 2004, at 3:57 PM, tedd wrote:

> What's the easiest way to go from:
>
>     <booktitle>Understanding XML</booktitle>
>
> and convert it to:
>
>      <em class="booktitle">Understanding XML</em>
>
> Any ideas?

Learn XSLT.  You'd just write a template like:

<xsl:template match="booktitle">
   <em class="booktitle">
     <xsl:apply-templates/>
   </em>
</xsl:template>

Bruce