We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e322059 commit 9d1c04dCopy full SHA for 9d1c04d
utils/snippetParser.js
@@ -52,6 +52,7 @@ function parseSnippet(snippetPath, text) {
52
description: properties.description,
53
author: properties.author,
54
tags: properties.tags.split(',').map((tag) => tag.trim()).filter((tag) => tag),
55
+ contributors: 'contributors' in properties ? properties.contributors.split(',').map((contributor) => contributor.trim()).filter((contributor) => contributor) : [],
56
code: code,
57
}
58
0 commit comments