Further to the <CODE> tag discussions, my $2e-2 is
that there be an INDENT parameter, which would shuffle the
code in, only during HTML display. A default of 5 characters
would be assumed, unless a specific number was specified,
such as INDENT=8. This gives you code like:
my $donut = 'round';
Instead of:
my $donut = 'round';
The downloaded code
would stay unindented. I find that indenting often improves
readability for short blocks, and most books (i.e.
Programming Perl)
use this same technique.
Of course,
vroom probably has 9e6 other things to do first.