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] character in procedure list heading in html


> -----Original Message-----
> From: Hinrich Aue 
> 
>    <xsl:text>&rtrif; </xsl:text>
> 
  
> 
> But the &rtrif; is an unknown entity.
> 
> Can I use these entities in my chm/html files?


I assume that you expect to see a small triangle in the output, since rtrif
is the ISO entity for the Unicode character U+25B8 BLACK RIGHT-POINTING
SMALL TRIANGLE. 

Yes, you can use an entity in a stylesheet (I suppose that is what you
mean), but then you have to declare it first:

<!DOCTYPE xsl:stylesheet [
<!ENTITY rtrif '&#x25B8;'>
]>

But if you use a character reference instead, you don't have to declare
anything. Just replace &rtrif; with &#x25B8;.

/MJ




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