Skip to content

Commit

Permalink
Line-breaks in topic titles causing builds to fail (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Mar 13, 2024
2 parents ee5eafe + 6b911ea commit 657c76c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xsl/extract-data.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<xsl:template match="/dita | *[contains(@class, ' topic/topic ')]">
<xsl:variable name="TITLE">
<xsl:value-of select="replace(*[contains(@class, ' topic/title ')],'&#xA;', ' ')"/>
<xsl:value-of select="normalize-space(replace(*[contains(@class, ' topic/title ')],'&#xA;', ' '))"/>
</xsl:variable>
<xsl:variable name="KEYWORDS">
<xsl:for-each
Expand Down

0 comments on commit 657c76c

Please sign in to comment.