Usage Note 23345: In ODS HTML output, how can I remove everything from the table of contents except the links?
To remove everything in the table of contents other than
the links, use the nonbreaking space character to
mask the procedure name in the ContentProcname style element,
and use the method in FAQ 3247 to omit the title. Below is
an example. View output.
proc template;
define style styles.test;
parent=styles.default;
style ContentTitle from Index;
style ContentProcname from Index /
bullet=none;
end;
run;
ods html body='body.html'
contents='content.html'
frame='frame.html' style=styles.test;
ods proclabel ' ';
proc print data=sashelp.class contents='Region 1.';
run;
ods html close;
See also the full PROC TEMPLATE FAQ and Concepts.
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: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2009-07-08 16:41:15 |
| Date Created: | 2003-08-08 13:35:17 |