I am trying to use the following in a custom brand: <xsl:value-of select="$pop_name"/> to display the name of a document in a custom header. However, the value that is returned contains underscores ("_") instead of spaces.
This can be done in XSL: - <xsl:value-of select="$pop_name"/> + <xsl:value-of select='translate($pop_name, "_", " ")'/>