I have been using CGI.pm for quite some time now. I often found the html code rendered by CGI.pm unreadable. For instance:
The above code can create a very, very long html code. Is there a way to insert line breaks while calling CGI.pm's subroutines, so that the html code becomes more readable?
Code:
table(tr(..),tr(..),...,tr(..));
The above code can create a very, very long html code. Is there a way to insert line breaks while calling CGI.pm's subroutines, so that the html code becomes more readable?