codexparser 0.1.84 → 0.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codexparser",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.85",
|
|
4
4
|
"description": "This is a Javascript Bible parser and text scanner. It will search through texts and collate all scripture references into an array and parse them into objects, and it will parse passages into objects by book, chapter, verse, and testament. ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// Versification mappings for Malachi, aligning ESV (English), BHS (Masoretic Text), and Göttingen LXX (Septuagint).
|
|
2
|
+
// ESV uses 4 chapters, with 4:1–6 corresponding to BHS 3:19–24 and LXX 3:19–24.
|
|
3
|
+
// Note: LXX reorders verses 4–6: ESV 4:4 = LXX 3:24, ESV 4:5 = LXX 3:22, ESV 4:6 = LXX 3:23.
|
|
4
|
+
// Chapters 1–3 have identical versification across all three (e.g., 1:1 = 1:1).
|
|
1
5
|
module.exports = {
|
|
2
6
|
"4:1": {
|
|
3
7
|
lxx: "3:19",
|
|
@@ -15,17 +19,17 @@ module.exports = {
|
|
|
15
19
|
eng: "4:3",
|
|
16
20
|
},
|
|
17
21
|
"4:4": {
|
|
18
|
-
lxx: "3:
|
|
22
|
+
lxx: "3:24", // Law of Moses (matches BHS 3:22 content)
|
|
19
23
|
mt: "3:22",
|
|
20
24
|
eng: "4:4",
|
|
21
25
|
},
|
|
22
26
|
"4:5": {
|
|
23
|
-
lxx: "3:
|
|
27
|
+
lxx: "3:22", // Elijah’s coming (matches BHS 3:23 content)
|
|
24
28
|
mt: "3:23",
|
|
25
29
|
eng: "4:5",
|
|
26
30
|
},
|
|
27
31
|
"4:6": {
|
|
28
|
-
lxx: "3:
|
|
32
|
+
lxx: "3:23", // Hearts restored (matches BHS 3:24 content)
|
|
29
33
|
mt: "3:24",
|
|
30
34
|
eng: "4:6",
|
|
31
35
|
},
|