Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

how to define the max length of lines when saving page as text

  • 5 답장
  • 1 이 문제를 만남
  • 10 보기
  • 최종 답변자: scheerphil

more options

When saving a page as text file, extra line breaks are added when none is on display. Is there a parameter setting the maximum length after which a line break is automatically inserted?

When saving a page as text file, extra line breaks are added when none is on display. Is there a parameter setting the maximum length after which a line break is automatically inserted?

모든 댓글 (5)

more options

In a normal text file, you would not see a line break. What file are you talking about? Is there a link?

more options

When a text file is rendered as HTML then line breaks are ignored. So this can happen if the original file already had these line breaks. You can possibly check that in the page source.

  • Firefox > Web Developer > Page Source
  • Tools > Web Developer > Page Source (Ctrl+U)
  • right-click on the web page and select "View Page Source"
more options

Well, after digging a little, I realized it's probably not a problem of line length. I'm coding an application that parses text files saved from web pages containing the information. The structure is like this: <tr><td>data</td><td>data</td><td>data</td><td>data</td><td>data</td><td>data</td><td>data</td><td>data</td><td>data</td></tr> for thousands of records which, when saved as text, gives data fields separated by Tabs. The thing is, in some cases, Tabs are replaced by line feeds. Can't figure out why.

more options

I think you should contact the help desk of whatever program is using that code for more information. There may be a convert program.

more options

There isn't any other program involved than Firefox to Generate the web page which is perfectly correct when saved as a web page (html only) and my program reading it as a text file. I think the problem lies with Firefox which, for I don't know what reason, introduces line feeds where there shouldn't be any. The 'save as' web page generates a one line file with the correct structure. I've switched to that for the time being. It's just that it takes twice as much space as the pure text file.