diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/data/yaml.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/data/yaml.js b/src/data/yaml.js index 5a4e87e3..819c639f 100644 --- a/src/data/yaml.js +++ b/src/data/yaml.js @@ -1783,6 +1783,15 @@ export function filterReferenceErrors(wikiData) { writeProperty = false; break; + + case '_contrib': + // Don't write out contributions - these'll be filtered out + // for content and data purposes automatically, and they're + // handy to keep around when update values get checked for + // art tags below. (Possibly no reference-related properties + // need writing, humm...) + writeProperty = false; + break; } if (value === undefined) { |