Add KJV chapter shards and Strong's index

This commit is contained in:
2026-07-15 16:53:14 -05:00
parent 7759c0de6a
commit 60a65e0c14
2386 changed files with 394139 additions and 5 deletions
+4 -1
View File
@@ -296,7 +296,10 @@ function attachmentsList(manifest) {
function packageFilesList(packageCatalog) {
const files = packageCatalog?.files
if (!files) return ['- No package file checksums listed.']
return Object.entries(files).map(([key, value]) => `- ${key}: \`${value.path}\` (${value.sha256})`)
return Object.entries(files).map(([key, value]) => {
const detail = value.sha256 ?? value.layout ?? 'directory'
return `- ${key}: \`${value.path}\` (${detail})`
})
}
function formatList(values) {