logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git
commit: da797b322223192a74d76302459fa67181dcc132
parent a81a26d12b59b09337ea7d7ef353d77334017379
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 17 Mar 2024 14:57:56 +0100

bookmarks.atom.xsl: Base <id> on the url for now

Diffstat:

Mbookmarks.atom.xsl1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/bookmarks.atom.xsl b/bookmarks.atom.xsl @@ -20,6 +20,7 @@ <xsl:template match="bookmark"> <entry> <title><xsl:value-of select="title"/></title> <link rel="alternate" type="text/html" href="{@href}"/> + <id><xsl:value-of select="@href"/></id> <xsl:if test="@added"><published><xsl:value-of select="@added"/></published></xsl:if> <xsl:if test="@modified"><updated><xsl:value-of select="@modified"/></updated></xsl:if> <xsl:if test="desc"><content type="text"><xsl:value-of select="desc"/></content></xsl:if>