Author Jude, Obadiah, and Philemon — books the bulk scripture import missed
Deploy / deploy (push) Successful in 1m45s

Three single-chapter books referenced by bible-plan.ts's readings had no
corresponding file in src/data/scripture/ at all, unlike everything else
covered by the Vulgate/Douay-Rheims bulk import — apparently dropped by
whatever produced the source. Authored by hand (Clementine Vulgate /
Douay-Rheims 1899 American Edition) and wired via new BOOK_ALIASES
entries (jude->jud, obad->abd, philem->phlm) so bible-plan's existing
citations keep their familiar English display form.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Je2mXNHoXmi1DS3xEL67rH
This commit is contained in:
2026-09-03 05:51:20 -04:00
parent 493c532469
commit cd53805c83
4 changed files with 382 additions and 0 deletions
+3
View File
@@ -49,6 +49,9 @@ const BOOK_ALIASES: Record<string, string> = {
luke: 'luc',
mark: 'marc',
mic: 'mich',
jude: 'jud',
obad: 'abd',
philem: 'phlm',
};
export function getScriptureChapter(book: string, chapter: number): ScriptureChapter | undefined {