meta-in-body

Installation
SKILL.md

Meta Tags in Body

Meta tags placed in the document body are ignored by search engines and most browsers—directives like noindex or canonical-url are silently ineffective, causing pages to be indexed or de-indexed unexpectedly.

Quick Reference

  • All tags must appear inside , never inside
  • Browsers may ignore or move misplaced meta tags, making them ineffective
  • Crawlers like Googlebot only process meta tags found in
  • Validate with HTML validator or inspect parsed DOM to confirm placement

Check

Parse the HTML and check whether any elements appear outside —i.e., inside or after the closing tag. Flag each misplaced tag by name/property.

Fix

Move all tags into the section before . If they are injected by a script after the DOM is built, refactor the injection to target document.head instead of document.body.

Installs
1
GitHub Stars
73.0K
First Seen
Jun 7, 2026
meta-in-body — thedaviddias/frontendchecklist