demo.html
High-level HTML programming with HTML::Stream
This demonstrates how one can use the HTML-Stream package from within ePerl to do high-level HTML programming. use HTML::Stream; my $HTML = new HTML::Stream \*STDOUT; !> First, a programmed hyperlink to $HTML-> A(HREF=>"http://www.engelschall.com/sw/eperl/")-> t("the ePerl webarea")-> _A; !> .
Second, just $HTML->t("plain text with umlaut characters: äöüÄÖÜß\n" ); !>.
These were automatically converted from ISO-Latin-1 encoding to HTML entities.