On Tue, Feb 20, 2001 at 05:28:31PM -0000, [EMAIL PROTECTED] wrote:
> craigmcc    01/02/20 09:28:30
> 
>   Modified:    src/doc  todo-1.1.xml
>   Log:
>   Correct email contact address for Rob.
>   
>   TODO:  figure out why my stylesheet is eating the <a> tags on volunteers...
>   

You explicitely say the XSLT script to drop out the anchor tag
and preserve only the text content. That's what the xsl:valuof
element does.

  <xsl:template match="task">
    <tr>
      <td>
        <xsl:choose>
          <xsl:when test="@name">
            <em><xsl:value-of select="@name"/></em>.
          </xsl:when>
        </xsl:choose>
        <xsl:value-of select="info"/>
      </td>
      <td><xsl:value-of select="assigned"/></td>
          ^^^^^^^^^^^^^
    </tr>

Instead a simply apply-template would do, which would conclude
into the default template there.                         incze

Reply via email to