Browse Source

xep.xsl: fix dangling closing curly brace in biblatex's author entry

Fixes: 5d186e6362 ("xep.xsl: produce BibLaTeX entry")
master
Florian Schmaus 2 years ago
parent
commit
1339517023
  1. 3
      xep.xsl

3
xep.xsl

@ -509,8 +509,7 @@ content: "XEP-<xsl:value-of select='/xep/header/number'/>"; @@ -509,8 +509,7 @@ content: "XEP-<xsl:value-of select='/xep/header/number'/>";
version = {<xsl:value-of select='/xep/header/revision[position()=1]/version'/>},
type = {XEP},
number = {<xsl:value-of select='/xep/header/number'/>},
author = {<xsl:for-each select='/xep/header/author'><xsl:value-of select='firstname'/><xsl:text> </xsl:text><xsl:value-of select='surname'/><xsl:if test="not(position() = last())"> and </xsl:if></xsl:for-each>
},
author = {<xsl:for-each select='/xep/header/author'><xsl:value-of select='firstname'/><xsl:text> </xsl:text><xsl:value-of select='surname'/><xsl:if test="not(position() = last())"> and </xsl:if></xsl:for-each>},
institution = {XMPP Standards Foundation},
url = {https://xmpp.org/extensions/xep-<xsl:value-of select='/xep/header/number'/>.html},
date = {<xsl:value-of select='/xep/header/revision[position()=last()]/date'/>/<xsl:value-of select='/xep/header/revision[position()=1]/date'/>},

Loading…
Cancel
Save