Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Seaside preference to create more human readable html, i.e. html including linebreaks?

The standard html output created by Seaside is all in one line, without any linebreaks.

Is there a preference to change this behavior, so that the output will be more human readable?

If not, what would be a way to change this behavior?

like image 758
Helene Bilbo Avatar asked Sep 04 '12 13:09

Helene Bilbo


2 Answers

afaik, there is no such preference.

Mind that developer tools in the webbrowser (such as firebug and webkit dev tools) can show you the formatted html & have a switch to pretty-print generated javascripts.

like image 84
Johan B Avatar answered Nov 04 '22 21:11

Johan B


There is no such preference, the reasons for this being

  • HTML is sensitive to whitespace (this also depends on the styles),
  • the developer tools already show you pretty printed html, and
  • tools like FireBug and WebKit developer tools can help you too.
like image 22
Lukas Renggli Avatar answered Nov 04 '22 21:11

Lukas Renggli