TEMPLATE Procedure: Managing Template Stores |
PROC TEMPLATE features: |
PATH statement |
SOURCE
statement |
|
This example displays the source code for the Xhtml
tagset that SAS provides.
 |
proc template;
path sashelp.tmplmst; |
 |
source Tagsets.Xhtml;
run; |
Source Code of the Template Tagset.Xhtml That Is Written to the SAS Log
proc template;
path sashelp.tmplmst;
source Tagsets.Xhtml;
define tagset Tagsets.Xhtml;
notes "XHTML 1.0";
define event doc;
start:
set $empty_tag_suffix " /";
set $doctype
"";
set $framedoctype
"";
put $doctype NL;
put "" NL;
finish:
put "" NL;
end;
split = "";
parent = tagsets.html4;
end;
NOTE: Path 'Tagsets.Xhtml' is in: SASHELP.TMPLMST.
run;
NOTE: PROCEDURE TEMPLATE used (Total process time):
real time 2.17 seconds
cpu time 0.17 seconds
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.