Files
Spanish/docs/spanish-fundamentals/structured/12-the-verb-poder.json
Trey t 47a7871c38 Add 13 new grammar notes with 1010 exercises from video extraction
Scraped a 4h Spanish fundamentals YouTube video (transcript + OCR on
14810 frames), extracted structured content across 52 chapters, and
generated fill-in-the-blank quizzes for every grammar topic.

- 13 new GrammarNote entries (articles, possessives, demonstratives,
  greetings, poder, al/del, prepositional pronouns, irregular yo,
  stem-changing, stressed possessives, present/future perfect, present
  indicative conjugation)
- 1010 generated exercises across all 36 grammar notes (new + existing)
- Fix tense guide parser to handle unnumbered *Usages* blocks
- Rewrite 6 broken tense guide bodies (imperative, subj pluperfect,
  subj future) with numbered usage format
- Bump courseDataVersion 5→6 with TenseGuide refresh on upgrade
- Add docs/spanish-fundamentals/ with raw transcripts, polished notes,
  structured JSON, and exercise data

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 08:40:05 -05:00

69 lines
3.4 KiB
JSON

{
"chapter_id": "12",
"slug": "the-verb-poder",
"title": "The Verb \"Poder\"",
"time_range_sec": [2633, 2823],
"summary": "Poder ('to be able to / can') is a stem-changing verb (o → ue) in the boot forms. It pairs directly with an infinitive — no preposition — to express ability.",
"suggested_grammar_note_id": null,
"rules": [
{
"title": "Stem change o → ue",
"bullets": [
"yo, tú, él, ellos forms change the stem to pue- (the 'boot').",
"nosotros and vosotros keep the regular stem (podemos, podéis).",
"Endings follow the regular -er pattern."
]
},
{
"title": "poder + infinitive",
"bullets": [
"Always follow poder directly with an infinitive: puedo hablar, puedes aprender.",
"No preposition (a, de, que) is needed between poder and the infinitive."
]
}
],
"examples": [
{"es": "Yo puedo hablar español.", "en": "I can speak Spanish.", "tags": ["+infinitive"]},
{"es": "Tú puedes aprender inglés.", "en": "You can learn English.", "tags": ["+infinitive"]},
{"es": "Él puede ayudar.", "en": "He can help.", "tags": ["+infinitive"]},
{"es": "Nosotros podemos ir.", "en": "We can go.", "tags": ["nosotros"]},
{"es": "Ellos pueden llamar por teléfono.", "en": "They can call by phone.", "tags": ["plural"]},
{"es": "¿Puedes ayudarme?", "en": "Can you help me?", "tags": ["question"]},
{"es": "No puedo dormir.", "en": "I can't sleep.", "tags": ["negative"]},
{"es": "¿Podemos entrar?", "en": "Can we come in?", "tags": ["question"]}
],
"vocab": [
{"es": "poder", "en": "to be able to / can", "pos": "verb"},
{"es": "hablar", "en": "to speak", "pos": "verb"},
{"es": "aprender", "en": "to learn", "pos": "verb"},
{"es": "ayudar", "en": "to help", "pos": "verb"},
{"es": "llamar", "en": "to call", "pos": "verb"},
{"es": "teléfono", "en": "phone", "pos": "noun"},
{"es": "español", "en": "Spanish (language)", "pos": "noun"},
{"es": "inglés", "en": "English (language)", "pos": "noun"}
],
"conjugation_tables": [
{
"verb": "poder",
"tense_id": "ind_presente",
"forms": {
"yo": "puedo",
"tu": "puedes",
"el": "puede",
"nosotros": "podemos",
"vosotros": "podéis",
"ellos": "pueden"
}
}
],
"exercises": [
{"sentence": "Yo _____ hablar español.", "correct": "puedo", "distractor": "podo", "explanation": "Stem change o→ue in yo form: puedo."},
{"sentence": "Nosotros _____ ir mañana.", "correct": "podemos", "distractor": "puedemos", "explanation": "Nosotros keeps the regular stem: podemos."},
{"sentence": "Ellos _____ llamar por teléfono.", "correct": "pueden", "distractor": "poden", "explanation": "Ellos is in the 'boot' → stem change: pueden."},
{"sentence": "¿Tú _____ ayudarme?", "correct": "puedes", "distractor": "podes", "explanation": "Tú is in the 'boot' → puedes."},
{"sentence": "Yo puedo _____ español. (speak)", "correct": "hablar", "distractor": "hablo", "explanation": "After poder use the infinitive, not a conjugated form."},
{"sentence": "Vosotros _____ entrar.", "correct": "podéis", "distractor": "puedéis", "explanation": "Vosotros stays regular: podéis."}
],
"caveats": "OCR rendered conjugations as 'PUO', 'pues', etc.; restored standard forms puedo/puedes/puede/podemos/podéis/pueden."
}