Next in thread →
Next in month →
Re: [docbook-apps] Index in htmlhelp is showing broken charactersfor swedish
Kenneth Johansson wrote: > That didn't work. > > Very weird though. When I removed the <xsl:param name="htmlhelp.encoding" > select="windows-1252"></xsl:param> and <xsl:param > name="chunker.output.encoding" select="windows-1252"></xsl:param> it worked. There is typo in your parameter defition. You must use <xsl:param name="htmlhelp.encoding" select="'windows-1250'"/> instead of <xsl:param name="htmlhelp.encoding" select="windows-1250"/> Note apostrophes inside quotes. Without apostrophes expression is eveluated as node test returning empty nodeset which is considered empty string, resulting in non-existent encoding name. So use former variant or another safe method for specifying string content of parameter: <xsl:param name="htmlhelp.encoding">windows-1250</xsl:param> Jirka -- ----------------------------------------------------------------- Jirka Kosek e-mail: http://www.kosek.cz
Next in thread →
Next in month →