Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tidying HTML5 Output Indentation in PHP

My web application produces HTML5 output as a concatenation of a variable number of views. The end result is a mess of indentation:

            </div>
        </div>

        <div id="content">

<div id="question-header">
    <h1>

I want to indent the code to obscure the origin of individual views and to make the output easier to follow.

I have looked into the Tidy PHP extension but all my attempts to make it work with HTML5 have produced improper indenting.

like image 686
Alix Axel Avatar asked Feb 25 '11 11:02

Alix Axel


1 Answers

If you want to obscure the origin of individual views, I suggest you to minify the HTML. This will have the added benefit of reducing the document size.

As for making the HTML output easier to follow, browsers come with debug utilities that parse and render out DOM tree in an indented format, e.g. https://trac.webkit.org/wiki/WebInspector, http://getfirebug.com/.

like image 200
James Avatar answered Sep 24 '22 02:09

James