fix special chars in link url
[librarian.git] / librarian / xslt / book2html.xslt
index 9e914c5..91118fa 100644 (file)
     <div class="dedication"><xsl:apply-templates /></div>
 </xsl:template>
 
+<xsl:template match="ramka">
+    <div class="frame"><xsl:apply-templates /></div>
+</xsl:template>
+
 <xsl:template match="kwestia">
     <div class="kwestia">
         <xsl:apply-templates select="strofa|akap|didaskalia" />
     </a>
 </xsl:template>
 
+<xsl:template match="link" mode="inline">
+    <a>
+        <xsl:attribute name="href">
+            <xsl:value-of select="@url"/>
+        </xsl:attribute>
+        <xsl:value-of select="text()"/>
+    </a>
+</xsl:template>
+
 <!-- ============================================== -->
 <!-- = STANDALONE TAGS                            = -->
 <!-- = (cannot contain any other tags)            = -->