From 88ade3a7b7e15e6742d367bdc4b95b1293b92429 Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Mon, 27 Jul 2026 15:22:14 +0200 Subject: feat: EF temporal Sunday lectionary (offline Sunday Mass readings) Unique temporal-day slugs (season-sunday-week); scripts/genlect.go generates tridentine-lectionary.ini from missalemeum keyed by slug (55 entries: the Sundays of the whole EF year). caldata.TemporalReadings(form,slug) lookup; --liturgy resolves proper-of-feast else the temporal cycle and renders the text. bible.ParseRef strips abbreviation dots (1 Cor. -> 1 Cor). 52/53 Sundays fully resolve offline. --- internal/bible/convert.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/bible/convert.go') diff --git a/internal/bible/convert.go b/internal/bible/convert.go index 6181dbf..e7d5944 100644 --- a/internal/bible/convert.go +++ b/internal/bible/convert.go @@ -46,6 +46,7 @@ var ( iRe = regexp.MustCompile(`\s+i\s+`) dashRe = regexp.MustCompile(`\s*[-–—]\s*`) verseLetterRe = regexp.MustCompile(`(\d)[a-c]\b`) + bookDotRe = regexp.MustCompile(`(\p{L})\.`) // abbreviation dot after a letter ("Cor." -> "Cor") psalmRestRe = regexp.MustCompile(`(\d+)(?:\s*\((\d+)\))?(.*)$`) digitsRe = regexp.MustCompile(`\d+`) ) -- cgit v1.3