Okay, so basically in this export I have two types of data selects going on. Ones that I write the value of and ones that get pulled from a database. They look like this:
Mine: <xsl:value-of select="$sepstart" /><xsl:text>B</xsl:text><xsl:value-of select="$sepend" />
Databases: <xsl:value-of select="$sepstart" /><xsl:value-of select="normalize-space(../../billing/firstname)"/><xsl:value-of select="$sepend" />
The output is:
Mine:"B"
Database: GilloD
The problem is those quotes, the " ", around my output. Why are these showing up? How can I exile them? What's a better forum for this?