definition-list
Installation
SKILL.md
Use correct definition list structure
Broken list structures confuse assistive technologies, preventing users from understanding the relationship between terms and their definitions.
Quick Reference
- Ensure <dl> contains only <dt>, <dd>, or / tags
- Avoid wrapping list items in invalid container elements like
- Maintain semantic relationships between terms and descriptions
Check
Verify that all <dl> elements contain only valid child elements (dt, dd, or allowed wrappers).
Fix
Remove any invalid elements from within the <dl> or wrap them appropriately to maintain semantic integrity.