print.xsl
branchstyles
changeset 20 78ac9176f4ef
parent 16 357ad8c99f4a
child 24 acf70691eb31
--- a/print.xsl	Mon Sep 14 11:30:58 2015 -0400
+++ b/print.xsl	Mon Sep 14 11:32:00 2015 -0400
@@ -96,6 +96,11 @@
     <xsl:apply-templates/>
   </list-block>
 </xsl:template>
+<xsl:template match="para/list">
+  <list-block provisional-distance-between-starts="5mm">
+    <xsl:apply-templates/>
+  </list-block>
+</xsl:template>
 <xsl:template match="shortlist">
   <block margin-left="24pt"><xsl:apply-templates mode="short"/></block>
 </xsl:template>
@@ -150,6 +155,13 @@
   <inline vertical-align="super" font-size="60%"><xsl:apply-templates/></inline>
 </xsl:template>
 
+<xsl:template match="link">
+  <xsl:variable name="linkend" select="@linkend"/>
+  <basic-link internal-destination="{$linkend}">
+    <xsl:apply-templates/>
+  </basic-link>  
+</xsl:template>
+
 </xsl:stylesheet>
 
 <!-- Keep this comment at the end of the file