I'm not sure it can be changed. At least not by me. You could override the method there if you wanted to.
The method involved is _StripOutWhiteSpace in the netwww.clw file. In your procedure you could add your own code to this method, before the parent call, and do a RETURN before the parent call.
You can start by Cut & Pasting the code from netwww into your procedure, and then editing it from there.
Actually you could start by just adding a RETURN before the parent call. It's possibly you don't need this step at all with the text you have.
First a short explanation of what's happening. If you look at the web page you're fetching (with html markup) you'll see the line
<td align="left">Intel Corporation </td>
Notice the spaces after the name. (This appears to be the only company with trailing spaces).
The current StripOutWhiteSpace method has code which removes the CRLF if it follows a space. In other words, lines that have an "artificial" line ending (where the artificiality is determined by the trailing space) are concatenated.
So by deriving your own flavor of the method (as described above) you can change this "rule".
If I change it then it changes for everyone, and there may be some who _want_ the rule.
cheers
Bruce