Date: Tue, 6 Dec 2005 23:16:49 -0500
Reply-To: Don Henderson <donaldjhenderson@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Don Henderson <donaldjhenderson@HOTMAIL.COM>
Subject: Re: 9.1 multiple spaces in footnote using ODS HTML
In-Reply-To: <1133917543.152306.167290@g14g2000cwa.googlegroups.com>
Content-Type: text/plain; charset="us-ascii"
Did you have or   in V8. The semicolon is needed. Perhaps that is
your problem.
If adding the ; so you have a properly formatted HTML entity reference does
not work, you might want to try to put a div tag around it. Sometimes that
prevents SAS from masking the HTML. Something like:
Title '<div>Hello There</div>';
You might also try to use the numeric representation for the entity. Sorry
that I can't look that up for you in my reference books as I am on the road.
I assume you can find it with a Google search. The syntax is:
©
I know I have used this value (i.e., the 169) before. But can't remember if
it is the non breakable space, the amper, or the percent.
HTH,
-don h
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
clanning345@GMAIL.COM
Sent: Tuesday, December 06, 2005 8:06 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: 9.1 multiple spaces in footnote using ODS HTML
I want this to work. It worked in 8.2:
ods html body='c:\test.html';
footnote 'Hello     There';
data stuff;
input x;
cards;
1
;
run;
proc print;
run;
ods html close;
The problem is that 9.1 is converting my " " to "&nbsp". How do I
tell SAS 9.1 to not convert it?
Thanks,
Chris