docs(seo): clarify alt vs caption in pre-publish checklist
Build & Deploy ResearchOwl / build-and-push (push) Successful in 6s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ChemaVX
2026-06-26 06:11:45 +00:00
co-authored by Claude Opus 4.8
parent 6d39875fcf
commit 727662294c
+3 -3
View File
@@ -284,8 +284,8 @@ def _seo_checklist(slug: str) -> str:
be all-fail noise. Jose runs `seo-check <slug>` after filling these in.""" be all-fail noise. Jose runs `seo-check <slug>` after filling these in."""
return ( return (
"\n\n⚠️ Antes de publicar, añade: meta title, meta description (≤145), " "\n\n⚠️ Antes de publicar, añade: meta title, meta description (≤145), "
"custom excerpt, OG/Twitter, feature image + alt, 2-3 internal links " "custom excerpt, OG/Twitter, feature image + alt (campo Alt, NO Caption), "
"(donde sea natural)\n" "2-3 internal links (donde sea natural)\n"
f"Luego valida: seo-check {slug}" f"Luego valida: seo-check {slug}"
) )
@@ -312,7 +312,7 @@ def _seo_checklist_slim(slug: str) -> str:
"""Slimmed checklist for the autofill path: meta/OG/excerpt/tags/links are """Slimmed checklist for the autofill path: meta/OG/excerpt/tags/links are
already on the draft, so only the human-only bits remain.""" already on the draft, so only the human-only bits remain."""
return ( return (
"⚠️ Antes de publicar: añade *feature image + alt*, luego:\n" "⚠️ Antes de publicar: añade *feature image + alt* (campo Alt, NO Caption), luego:\n"
f"`seo-check {slug}`" f"`seo-check {slug}`"
) )