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.
2 parents c0b216c + 640df0f commit 75289adCopy full SHA for 75289ad
Extension/gulpfile.js
@@ -549,7 +549,10 @@ const generateLocalizedJsonSchemaFiles = () => {
549
keyPrefix = keyPrefix.replace(/\\/g, "/");
550
let descriptionCallback = (path, value, parent) => {
551
if (stringTable[keyPrefix + path]) {
552
- parent.description = stringTable[keyPrefix + path];
+ if (!parent.markdownDescription)
553
+ parent.description = stringTable[keyPrefix + path];
554
+ else
555
+ parent.markdownDescription = stringTable[keyPrefix + path];
556
}
557
};
558
traverseJson(jsonTree, descriptionCallback, "");
0 commit comments