Yes I just happen to look through the source code sometimes too. Do you never do that?
There are different reasons that I do that:
- I can see the source code, and find out for example missing closing tags. Maybe this is the most likely use of the comments, and doesn't apply with the html helpers.
- To scroll through the source code, to get an overview of something. It is faster and more convenient to press ctrl+u, ctrl+f (find something), ctrl+g, than the lag of right click and inspect element...
- Maybe it makes more sense that I want to produce readable html, which is an example usage:
https://groups.google.com/forum/#!topic/web2py/pyOosnV9AuQReasons why I think it could be of use:
- It is common practice that these end closing class/id comments are written all over the web. Even bootstrap does it.
- Another web2py user wrote a tidy html function (as linked above to the readable html), so there might be others than me who care about having a neat and organized html output.
Anyway, if the community isn't interested in this functionality I have solved the issue for myself.
Thanks for your feedback.