[
Lists Home |
Date Index |
Thread Index
]
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
|