Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
376 views
Welcome To Ask or Share your Answers For Others

1 Answer

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/.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...