Hello everyone,
does anyone know if there is a way to make the rendered html more readable?. I mean, properly tabulated and ordered.
I'm using sigthly and the markup of each component is well tabulated on the app code.
But I understand that the rendering engine is modifying that indentation and rendering an html that is not ordered and indenting.
an example
<html>
<head></head>
<body>
<div><span>
</span></div>
</body>
<footer>
<div>
</div>
</footer>
</html>
instead of something like this
<html>
<head></head>
<body>
<div>
<span></span>
</div>
</body>
<footer>
<div></div>
</footer>
</html>
Is that posible without add an extra html processor or something similar to that?
Thanks in advance