Skip to main content

Content is organized in digestible sections

ab-001540 · geo-readiness.ai-readable-structure.content-well-chunked
Severity: infoactive

Why it matters

AI systems parse structured, chunked content with far higher extraction fidelity than dense walls of text — a 500-word section under a single heading gets compressed into a vague summary, while three 150-word subsections under descriptive subheadings get quoted directly. Poorly chunked content reduces both citation rate and quote accuracy, feeding back into lower perceived authority for the site as a whole.

Severity rationale

Info because content chunking affects extraction fidelity but rarely blocks citation outright.

Remediation

Break content sections exceeding 300 words into smaller subsections under descriptive H3 subheadings. Keep paragraphs to 1-4 sentences, with no paragraph exceeding 6 sentences. Apply this to marketing pages and blog posts under src/app/ and src/content/blog/.

<h2>Our Platform</h2>
<h3>How Scoring Works</h3>
<p>150 words...</p>
<h3>Community Benchmarks</h3>
<p>150 words...</p>

Detection

  • ID: geo-readiness.ai-readable-structure.content-well-chunked

  • Severity: info

  • What to look for: Examine marketing and content pages for paragraph length and section structure. Count sentences per paragraph and words per section (content between headings). For each content section, count the word count between consecutive headings. Focus on marketing pages and blog posts — app UI pages are excluded. Report: "X content sections measured, Y exceed the 300-word threshold."

  • Pass criteria: Count all content sections (text between consecutive headings) on marketing and content pages. No more than 10% of sections may exceed 300 words without a subheading to break them up. Paragraphs must predominantly be 1-4 sentences (at least 80% of paragraphs). No single paragraph may exceed 6 sentences.

  • Fail criteria: More than 10% of content sections exceed 300 words without a subheading, or more than 20% of paragraphs exceed 4 sentences. Marketing pages have paragraphs exceeding 6 sentences, or content sections exceeding 300 words without any subheading to break up the wall of text. AI systems parse shorter, structured paragraphs better than dense blocks. Report: "X of Y sections exceed 300 words — Z% (threshold: no more than 10%)".

  • Skip (N/A) when: No marketing or content pages (API-only or utility project).

  • Detail on fail: "3 of 8 content sections exceed 300 words (37%) — threshold is no more than 10%. Longest section is 420 words with no subheadings. AI systems parse shorter sections more effectively." or "Marketing page has a single 500-word section under one heading — 1 of 1 sections exceeds 300-word limit"

  • Remediation: Break dense content into smaller chunks with descriptive subheadings:

    Instead of one long section:

    <h2>Our Platform</h2>
    <p>500 words of continuous text...</p>
    

    Break it up:

    <h2>Our Platform</h2>
    <h3>How Scoring Works</h3>
    <p>150 words...</p>
    <h3>Community Benchmarks</h3>
    <p>150 words...</p>
    

Taxons

History