From ed8aa7702be3c826ad5cc8e7b4e45db0744b51d3 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Wed, 21 Feb 2018 18:28:23 -0800 Subject: [PATCH] Provide real name and description for markdown extension #43978 --- extensions/markdown/package.json | 8 ++++---- extensions/markdown/package.nls.json | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/extensions/markdown/package.json b/extensions/markdown/package.json index a3b4df103e1..fe3ac9dac06 100644 --- a/extensions/markdown/package.json +++ b/extensions/markdown/package.json @@ -1,11 +1,11 @@ { "name": "vscode-markdown", - "displayName": "VS Code Markdown", - "description": "Markdown for VS Code", - "enableProposedApi": true, + "displayName": "%displayName%", + "description": "%description%", "version": "0.2.0", - "publisher": "Microsoft", + "publisher": "vscode", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", + "enableProposedApi": true, "engines": { "vscode": "^1.20.0" }, diff --git a/extensions/markdown/package.nls.json b/extensions/markdown/package.nls.json index 2b9dae37218..39e2d7f5610 100644 --- a/extensions/markdown/package.nls.json +++ b/extensions/markdown/package.nls.json @@ -1,4 +1,6 @@ { + "displayName": "Markdown Language Features", + "description": "Provides rich language support for Markdown.", "markdown.preview.breaks.desc": "Sets how line-breaks are rendered in the markdown preview. Setting it to 'true' creates a
for every newline.", "markdown.preview.linkify": "Enable or disable conversion of URL-like text to links in the markdown preview.", "markdown.preview.doubleClickToSwitchToEditor.desc": "Double click in the markdown preview to switch to the editor.",