Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
while(<>){
[tab]s/<head>/<HEAD>/g;
[tab]s/<\/head>/<\/HEAD>/g;
[tab]print;
}
[b]#!/usr/bin/perl[/b]
while (<DATA>) {
s/(<\/?[^>]+)/uc $1/ge;
print;
}
__DATA__
blah blah <body background=blah.jpg> blah blah
blah <head> Blah blah blah... </head> blah
blah blah <td span=3>blah</td> blah blah blah
<HTML><BODY>
<H1>This will break badly</H1>
<SCRIPT>
var x = 1;
var y = 2;
if ( x[red]<y[/red] ) {
alert( 'spot the problem?' );
}
</SCRIPT></BODY></HTML>