Re: [xsl] Entity Problems...

Subject: Re: [xsl] Entity Problems...
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 17 Aug 2007 12:21:08 -0400
At 2007-08-17 12:09 -0400, Nick Shepherd wrote:
Now to my question, although basic compared to the questions generally
asked on this list, is there any way to prevent these entities from
producing errors?  We've come to a point with one of our products that
allows users to create their own websites and this type of
functionality is needed because the rich text editor of choice loves
to throw "&nbsp;" everywhere (tiny mce).  Any ideas?

All you have to do is teach the processor about the entity.


Or alternatives
to the rich text editor that would allow non-techy users to edit the
look and feel of their content on their sites?

This is what I give my students:


<?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp "&#160;"> <!--known for HTML output, not in XML-->
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                version="1.0">
<xsl:output method="html"/><!--use hardwired browser entities-->
<xsl:template match="/">
 ...
 <xsl:text>Module:&nbsp;</xsl:text>
 ...
</xsl:template>

I hope this helps.

. . . . . . . . . Ken

--
Upcoming public training: XSLT/XSL-FO Sep 10, UBL/code lists Oct 1
World-wide corporate, govt. & user group XML, XSL and UBL training
RSS feeds:     publicly-available developer resources and training
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Jul'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal

Current Thread