Specify the events. The following events are from the SAS tagset Tagsets.Htmlcss, and
they show how ODS creates notes. By defining the GNOTE event and setting the proper
style in the right place, ODS creates a two-cell table that has a banner using the
appropriate banner style and a content cell that has the appropriate content style.
define event Gnote;
start:
put '<div>';
trigger align;
put '>';
put '<table>';
put '<tr>' nl;
finish:
put '</tr>' nl;
put '</table>' nl;
put '</div>';
end;
define event GBanner;
put '' nl;
trigger pre_post;
put '' nl;
end;
define event GNContent;
put '';
trigger pre_post start;
put VALUE;
trigger ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.