diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/99_result/atom.xsl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source/99_result/atom.xsl b/source/99_result/atom.xsl index e67f89c..7d50f2d 100644 --- a/source/99_result/atom.xsl +++ b/source/99_result/atom.xsl @@ -46,8 +46,14 @@ <xsl:template match="datasource/articles/entry"> <entry xmlns="http://www.w3.org/2005/Atom"> - <title><xsl:value-of select="title"/></title> - <link><xsl:value-of select="$url"/>/article/<xsl:value-of select="@handle"/></link> + <title> + <xsl:value-of select="title"/> + </title> + <link> + <xsl:attribute name="href"> + <xsl:value-of select="$url"/>/article/<xsl:value-of select="@handle"/> + </xsl:attribute> + </link> <content type="xhtml"> <div xmlns="http://www.w3.org/1999/xhtml"> <xsl:apply-templates mode="xhtml_copy" select="content/node()" /> |