Greetings,
I'm doing some template work on a personal project and I'm trying very hard to keep my lines under 80 characters wide. This is difficult to do with HTML, especially when adding code for dynamic content as well. There are a lot of cases where it would be helpful to put line breaks inside the elements themselves, between attributes. Here's an example:
<a href="http://example.com">foobar</a>
Basically, I want to be able to do this:
<a
href="http://example.com">foobar</a>
without any ill effect. It seems to validate and Firefox doesn't mind, but I'd like something approaching an authoritative answer. I've tried to find the answer in the HTML specs to no avail. Google is no help either, so I thought I'd ask the knowledgeable folk.
Thanks for any insight.