diff options
Separated tag links using spaces instead of CSS margins
* the former also works when CSS is not supported while the latter leads to unseparated tag links
Diffstat (limited to 'source/01_data')
-rw-r--r-- | source/01_data/articles.xsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/01_data/articles.xsl b/source/01_data/articles.xsl index fa83ee5..e207117 100644 --- a/source/01_data/articles.xsl +++ b/source/01_data/articles.xsl @@ -19,7 +19,9 @@ <xsl:param name="path"/> <xsl:for-each select="$root/files/directory[@name = 'tags']/*[./file/full = $path]"> - <tag><xsl:value-of select="@name"/></tag> + <tag> + <xsl:value-of select="@name"/> + </tag> </xsl:for-each> </xsl:template> |