Module:ConfigRepository: Difference between revisions
// via Wikitext Extension for VSCode |
// via Wikitext Extension for VSCode |
||
| Line 76: | Line 76: | ||
return tostring(require('Module:DateNormalization').formatDate(value)) | return tostring(require('Module:DateNormalization').formatDate(value)) | ||
end | end | ||
}, | |||
-- Properties to skip in processAdditionalProperties | |||
skipProperties = { | |||
["Has country"] = true, -- Skip country as it's handled separately | |||
["Has ICANN region"] = true, -- Skip region as it's handled separately | |||
["Has event subject"] = true -- Skip subject as it's handled by primary properties | |||
} | } | ||
} | } | ||
| Line 170: | Line 177: | ||
return value | return value | ||
end | end | ||
}, | |||
-- Properties to skip in processAdditionalProperties | |||
skipProperties = { | |||
["Has country"] = true, -- Skip country as it's handled separately | |||
["Has ICANN region"] = true -- Skip region as it's handled separately | |||
} | } | ||
} | } | ||
| Line 284: | Line 297: | ||
return tostring(require('Module:DateNormalization').formatDate(value)) | return tostring(require('Module:DateNormalization').formatDate(value)) | ||
end | end | ||
}, | |||
-- Properties to skip in processAdditionalProperties | |||
skipProperties = { | |||
["Has country"] = true -- Skip country as it's handled separately | |||
} | } | ||
} | } | ||
| Line 330: | Line 348: | ||
return tostring(require('Module:DateNormalization').formatDate(value)) | return tostring(require('Module:DateNormalization').formatDate(value)) | ||
end | end | ||
}, | |||
-- Properties to skip in processAdditionalProperties | |||
skipProperties = { | |||
-- No properties to skip in the library interview template | |||
} | } | ||
} | } | ||