in reply to Appending lines starting with white space to the previous line
$_ = <>; chomp; print; while (<>) { chomp; print "\n" unless s/^\s+//; print; } print "\n"; [download]