Usage Note 23332: Keeping leading and trailing blank spaces in titles and footnotes using ODS
The leading and trailing blank spaces in a title or footnote
   can be preserved by specifying the attribute ASIS=ON.
   The default value for this attribute is OFF, which ignores
   the blank spaces. When the value is set to ON, the nonbreaking
   space character is inserted. In HTML,   is the
   nonbreaking space character.
   In the RTF destination, \~ is
   the nonbreaking space character.
   proc template;
     define style styles.test;
        parent=styles.default;
          style systemtitle from systemtitle
           "Style element responsible for titles " /
               asis=on;
          style systemfooter from systemfooter
           "Style element responsible for footnotes " /
               asis=on;
   end;
   run;
   ods html file='temp.html' style=styles.test;
   proc print data=sashelp.class;
   title 'this    is    spaced   out';
   run;
   ods html close;
Operating System and Release Information
*
        For software releases that are not yet generally available, the Fixed
        Release is the software release in which the problem is planned to be
        fixed.
       
| Type: | Usage Note | 
| Priority: | low | 
| Topic: | Third Party  ==>  Output  ==>  HTML SAS Reference  ==>  ODS (Output Delivery System)
  | 
| Date Modified: | 2003-09-22 11:31:30 | 
| Date Created: | 2003-08-07 15:41:14 |