in src/helpers/pages-with-tag.js [18:24]
function getPosition (page, custom) {
const val = page.attributes.wikidevsection.split(', ')
const index = val.indexOf(custom)
const valpos = page.attributes.position.split(', ')
const r = valpos[index]
return Number(r)
}