What about this one then?

---
  <xsl:template match="people">
    <html><head>
        <title>Test</title>
      </head>
      <body>
        <UL>
          <xsl:for-each select="person">
            <LI>
                <xsl:text disable-output-escaping="yes">&lt;A
HREF="/homepage/?id=<xsl:value-of disable-output-escaping="yes"
select="id"/>"&gt;<xsl:value-of select="name"/></xsl:text>
                <xsl:text disable-output-escaping="yes">        
                &lt;/A&gt;
                </xsl:text>
            </LI>
          </xsl:for-each>
        </UL>
      </body>
    </html>    
  </xsl:template>
---
It contains to many xsl:text's for my likeing. But there seems to be a
bug in sablotron,
when it handles disable-output-escaping. Or maybe I have misunderstood
the XSL spec.

But it works for your example.

Cheers,
Andrej

Reply via email to