Вы, вероятно, должны иметь это как
<h1 title="{title}: {short-description}">
... some value here for the h1 to display ...
</h1>
В качестве альтернативы вы можете сделать следующее:
<xsl:element name="h1">
<xsl:attribute name="title">
{title}: {short-description}
</xsl:attribute>
... some value here for the h1 to display ...
</xsl:element>
Надеюсь, это поможет.