I recently submitted a perl module for the first time. On the front CPAN page, in the module's documentation some of the line breaks are getting ignored:
http://search.cpan.org/~bbimber/Labkey-query-0.02/lib/Labkey/query.pm Code that should look like: my $results = Labkey::query::selectRows( -baseUrl => 'http://labkey.com:8080/labkey/', -containerPath => '/myFolder', is presented in one line. like this: my $results = Labkey::query::selectRows( -baseUrl => 'http://labkey.com:8080/labkey/', -containerPath => '/myFolder', does anyone know how to change this? is the HTML page populated by the README file, POD or somewhere else? Thanks in advance.
