Subject: Re: Building a new tree
From: James Clark <jjc@xxxxxxxxxx>
Date: Thu, 15 Apr 1999 10:25:12 +0700
|
Nantapon Chaimunkong wrote:
>
> You must identify id element using xsl:id before using id().
>
> I try the following stylesheet. It doesn't work on XT, though. XT doesn't
> support id.
XT doesn't support xsl:id, but it does support id(). This means you must
declare ID attributes as such in the DTD. For example:
<!DOCTYPE document [
<!ATTLIST common id ID #IMPLIED>
]>
<document>
...
James
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|