AI: Common Mistakes to Avoid
Wrong: Style without class
::: width:50% <!-- Missing class name -->
Wrong: Mismatched colon counts
:::: container
Content
::: <!-- Should be :::: -->
Wrong: Mixing semicolon modes
::: caption width:50% background:rgba(0,0,0,0.5); <!-- Mixed! -->
Correct versions:
::: caption width:50% background:rgba(0,0,0,0.5) <!-- All without ; -->
::: caption width:50%; background:rgba(0,0,0,0.5); <!-- All with ; -->
Wrong: URL without semicolons (contains :)
::: box background:url(https://example.com/img.jpg) <!-- Needs ; mode -->
Correct:
::: box background:url(https://example.com/img.jpg); <!-- ; everywhere -->