OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: RE: [docbook-apps] trademark tag not rendered correctly in javahelp


> -----Original Message-----
> From: Paul Taylor  

> Ok I tried to this by creating a file javahelpdriver which references 
> javahelp (this is the way Ive pased paramters before and it doesnt 
> require me to alter the docbook stuff directly) but it didnt work , 
> however Im probably calling it wrong.
...
> <xsl:output method="html"
> encoding="UTF-8"
> indent="no"
> saxon:character-representation="native;decimal"/>

Since you are generating HTML chunks for JavaHelp, you must set the
parameters like this:

<xsl:param name="chunker.output.encoding">UTF-8</xsl:param>
<xsl:param name="saxon.character.representation">native;decimal</xsl:param>

With these particular settings, you will get raw (native) UTF-8 with no
entity references or character references at all.
	

> > Just seen this, saxon is outputting &trade; which doesnt work. I 
> > havent yet tried getting it to output the &#8482 but Ill 
> try tommorrow.

There must be something very strange going on if you are getting &trade;.
Saxon doesn't know about that entity reference, and cannot output it.

/MJ



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]