Topic: xml -> html with xslt |
|
---|---|
Author | Thread |
Neurotic (0) Inmate Newly admitted From: |
posted 08-21-2004 00:45
I have this xml file (a.xml): code: <?xml version="1.0" encoding="UTF-8"?>
code: <?xml version="1.0" encoding="UTF-8"?>
code: <html>
|
Bipolar (III) Inmate From: Cold Sweden |
posted 08-21-2004 18:29
Since you match all nodes within <list>, the whitespace before, after and between the item elements will also be matched. Instead, use code: <xsl:for-each select="*"> or code: <xsl:for-each select="item">
|
Obsessive-Compulsive (I) Inmate From: |
posted 08-21-2004 20:20
thank you; i have resolved with '*' and now I've understood the behavior of node() |