Update 'Util/to_changelog_md.xsl'

This commit is contained in:
Francesco Mangiacrapa 2020-06-22 17:31:35 +02:00
parent 5119055de3
commit ed86f5f5e5
1 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="no" encoding="UTF-8"/>
<xsl:template match="*/text()[normalize-space()]">
<xsl:text>&#10;&#10;</xsl:text>
<xsl:text>&#10;</xsl:text>
<xsl:value-of select="normalize-space()"/>
</xsl:template>
@ -18,9 +18,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## [<xsl:value-of select="translate(translate(substring(@component, string-length(@component) - 5),'.',''),'-','.')" />] - <xsl:value-of select="@date" />
<xsl:for-each select="Change">
<xsl:text>&#10;</xsl:text>
<xsl:apply-templates/>
<xsl:text>&#10;&#10;</xsl:text>
</xsl:for-each>
<xsl:text>&#10;</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>