SASUnit Examples  Version 1.2.1
_sasunit_reportheaderhtml.sas
Go to the documentation of this file.
1 
19 %MACRO _sasunit_reportHeaderHTML (
20  i_title
21 );
22 
23  PUT "<html xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">";
24  PUT " <head>";
25  PUT " <meta http-equiv=""Content-Type"" content=""text/xhtml;charset=windows-1252"" />";
26  PUT " <meta http-equiv=""Content-Style-Type"" content=""text/css"" />";
27  PUT " <meta http-equiv=""Content-Language"" content=""de"" />";
28  PUT " <link href=""sasunit.css"" rel=""stylesheet"" type=""text/css"">";
29  PUT " <link href=""tabs.css"" rel=""stylesheet"" type=""text/css"">";
30  PUT " <link rel=""shortcut icon"" href=""./favicon.ico"" type=""image/x-icon"" />";
31  PUT " <title>&i_title</title>";
32  PUT " </head>";
33 
34 %MEND _sasunit_reportHeaderHTML;