
| Features: |
|
ods path sasuser.templat (update)
sashelp.tmplmst (read);
proc template;
define tagset tagsets.mytags /store=sasuser.templat;
parent=tagsets.chtml;
define event colspecs;
put 'These are my new colspecs' nl;
end;
define event table;
put '<p>' nl '<table>';
finish:
put '</table>';
end;
define event system_title;
end;
end; run;
ods tagsets.mytags body='custom-tagset-filename.html';
proc print data=sashelp.class; run;
ods tagsets.mytags close;
ods path sasuser.templat (update)
sashelp.tmplmst (read);
proc template;
define tagset tagsets.mytags /store=sasuser.templat;
parent=tagsets.chtml;
define event colspecs;
put 'These are my new colspecs' nl;
end;
define event table;
put '<p>' nl '<table>';
finish:
put '</table>';
end;
define event system_title;
end;