fix for audio
[librarian.git] / src / librarian / xslt / book2html.xslt
index 2c17d99..b1099e0 100644 (file)
     <em class="person"><xsl:apply-templates mode="inline" /></em>
 </xsl:template>
 
+<xsl:template match="br" mode="inline">
+    <br/>
+</xsl:template>
+
 <xsl:template match="www" mode="inline">
     <a target="_blank">
         <xsl:attribute name="href">
 </xsl:template>
 
 
+<xsl:template match="audio">
+  <span>
+    <xsl:attribute name="data-audio-part">
+      <xsl:value-of select="@part"/>
+    </xsl:attribute>
+    <xsl:attribute name="data-audio-ts">
+      <xsl:value-of select="@ts"/>
+    </xsl:attribute>
+  </span>
+</xsl:template>
+<xsl:template match="audio" mode="inline">
+  <xsl:apply-templates select="." />
+</xsl:template>
+
+
 <!-- ================ -->
 <!-- = SPECIAL TAGS = -->
 <!-- ================ -->