Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

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

  • 5 respostas
  • 1 tem este problema
  • 10 visualizações
  • Última resposta de 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?

Todas as respostas (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.