Date: Tue, 16 Mar 2004 15:00:19 -0500
Reply-To: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject: Re: ODS difference between 9.0 and 9.1
"Pete Lund" <pete.lund@NWCSR.NET> wrote in message
news:200403161818.i2GII2I01792@listserv.cc.uga.edu...
> If I run the following little program in version 9.0 the ouput is just
> what I want - the   strings turn into spaces in the html and the
> middle line is "indented" four spaces. However, if I run the same code in
> version 9.1 the " " strings are converted to "&nbsp" and the value
> prints "as is".
>
> I've tried the protectspecialchars=off style option to no avail. Any
> other ideas?
>
> data test;
> length x $100;
> x = 'test';output;
> x = ' test';output;
> x = 'test';output;
> run;
>
> ods html body='c:\temp\test.html';
>
> proc print;
> run;
>
> ods html close;
>
> Thanks-
> Pete
proc print style(data)={protectspecialchars=off};
run;
Online help lists all the (<location>) that can be stylized.
--
Richard A. DeVenezia
http://www.devenezia.com/
|