UTF-8 in RTF Template not working? Need tab in barcode
The barcode function we're using is <?format-barcode:DATA-TO-BE-ENCODED-HERE;'code128a'?>
I've tried encoding a tab character directly, and I've tried using the UTF-8 encoding, but it appears neither is respected by the processing engine.
<xsl:value-of select="' '"/> -- (where there is a tab character inside quotes) produces a single space.
<xsl:text>	 </xsl:text> -- produces a literal 	
<xsl:value-of select="'$'"/> -- produces a literal $
Other combinations of quote marks produce various errors, or nothing at all. Putting 	 in the data source produces the literal 	.