Add KJV chapter shards and Strong's index
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user