-
Notifications
You must be signed in to change notification settings - Fork 35.6k
Closed
Labels
author-verification-requestedIssues potentially verifiable by issue authorIssues potentially verifiable by issue authorbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugextensionsIssues concerning extensionsIssues concerning extensionsinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersverifiedVerification succeededVerification succeeded
Milestone
Description
- VSCode Version: 1.41.1
VSCode extends the JSON schema for extension settings with a markdownDescription
property which takes priority over a normal description
. This seems to be why all the descriptions are missing on the "contributions" tab of the Haxe extension:
If I Ctrl+F-replace all the usages with a regular description
, it looks good:
Note: if it's too much trouble, it's probably fine to just render markdown descriptions as plain text here, as long as they're rendered at all.
To reproduce:
"contributes": {
"configuration": [
{
"title": "custom settings",
"properties": {
"test": {
"markdownDescription": "Hello `World`",
"type": "boolean",
"default": false
}
}
}
]
}
nadako
Metadata
Metadata
Assignees
Labels
author-verification-requestedIssues potentially verifiable by issue authorIssues potentially verifiable by issue authorbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugextensionsIssues concerning extensionsIssues concerning extensionsinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersverifiedVerification succeededVerification succeeded