Check for missing space between attributes
Check if there is no space between attributes and give an error for that. That's a mistake that can happen easily, but makes the HTML invalid.
Examples
Incorrect:
<input type="submit"class="foo">
Correct:
<input type="submit" class="foo">