$text =~ s/&/&/g; # Make the basic HTML . . . $text =~ s/</g; # . . . characters &, <, and > . . . $text =~ s/>/>/g; # . . . HTML safe. ----------------------------------------------------------------------------- Copyright 1997-2024 Jeffrey Friedl