summaryrefslogtreecommitdiffstats
path: root/common/entities/entities.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'common/entities/entities.xsl')
-rw-r--r--common/entities/entities.xsl9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/entities/entities.xsl b/common/entities/entities.xsl
index 9275a25..b28dbac 100644
--- a/common/entities/entities.xsl
+++ b/common/entities/entities.xsl
@@ -36,7 +36,7 @@
<xsl:variable name="body">
<xsl:apply-templates/>
</xsl:variable>
- <xsl:value-of select="concat( '&lt;!ENTITY ', @name, ' ', normalize-space($extra), ' &quot;', normalize-space($body), '&quot; &gt; &lt;!-- ', normalize-space($desc), ' --&gt;')" disable-output-escaping="yes"/>
+ <xsl:value-of select="concat( '&lt;!ENTITY ', @name, ' ', normalize-space($extra), ' &quot;', normalize-space($body), '&quot; &gt; &lt;!-- ', normalize-space($desc), ' --&gt;')" disable-output-escaping="yes"/>
</xsl:template>
<xsl:template match="use">
@@ -60,4 +60,11 @@
<xsl:text> </xsl:text>
</xsl:comment>
</xsl:template>
+
+ <xsl:template match="ulink">
+ <xsl:text disable-output-escaping="yes">&lt;ulink url=&apos;</xsl:text>
+ <xsl:value-of select="normalize-space(@url)" disable-output-escaping="yes"/>
+ <xsl:text disable-output-escaping="yes">&apos;/&gt;</xsl:text>
+ </xsl:template>
+
</xsl:stylesheet>