broken-html
Installation
SKILL.md
Fix malformed HTML structure
Malformed HTML can cause rendering issues across browsers and may prevent search engine crawlers from accurately parsing and indexing your content.
Quick Reference
- Ensure all HTML tags are properly closed and nested according to specifications
- Remove stray tags or unescaped characters from the source code
- Verify the document structure follows a logical hierarchy with valid head and body sections
Check
Validate the HTML structure of the page to identify any unclosed tags, incorrect nesting, or structural errors.
Fix
Correct the malformed HTML by properly closing tags and ensuring all elements are nested according to the HTML5 specification.