<uri> is now <a>.
authorkramm <kramm>
Wed, 2 Jun 2004 19:03:33 +0000 (19:03 +0000)
committerkramm <kramm>
Wed, 2 Jun 2004 19:03:33 +0000 (19:03 +0000)
doc/guide.xsl

index 512cc1e..23fdba0 100644 (file)
     </font>
   </xsl:template>
 
-  <xsl:template match="uri">
-  <!-- expand templates to handle things like <uri link="http://bar"><c>foo</c></uri> -->
+  <xsl:template match="a">
+  <!-- expand templates to handle things like <a href="http://bar"><c>foo</c></a> -->
     <xsl:choose>
-      <xsl:when test="@link">
-       <a href="{@link}">
+      <xsl:when test="@href">
+       <a href="{@href}">
          <xsl:apply-templates/>
        </a>
       </xsl:when>