Skip to content

Commit

Permalink
Fix extra space in JATS output (fixes #864)
Browse files Browse the repository at this point in the history
This commit removes an extra non-breakable space character when using
the JATS output format.
  • Loading branch information
tkw1536 committed Aug 17, 2017
1 parent c841e72 commit 66489e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LaTeXML/resources/XSLT/LaTeXML-jats.xsl
Expand Up @@ -199,7 +199,7 @@
<given-names>
<xsl:for-each select="str:tokenize(./text(),' ')">
<xsl:if test="position()!=last()">
<xsl:value-of select="."/>&#160;
<xsl:value-of select="."/>
</xsl:if>
</xsl:for-each>
</given-names>
Expand Down

0 comments on commit 66489e5

Please sign in to comment.