Rename notebook-markdown-extension to markdown-math

This makes it more clear what this extension is contributing
This commit is contained in:
Matt Bierner 2021-06-07 16:57:31 -07:00
parent 4bafa5d723
commit 34f0fcaf52
No known key found for this signature in database
GPG key ID: 099C331567E11888
15 changed files with 11 additions and 11 deletions

View file

@ -51,7 +51,7 @@ module.exports.indentationFilter = [
'!test/monaco/out/**',
'!test/smoke/out/**',
'!extensions/typescript-language-features/test-workspace/**',
'!extensions/notebook-markdown-extensions/notebook-out/**',
'!extensions/markdown-math/notebook-out/**',
'!extensions/vscode-api-tests/testWorkspace/**',
'!extensions/vscode-api-tests/testWorkspace2/**',
'!extensions/vscode-custom-editor-tests/test-workspace/**',
@ -89,7 +89,7 @@ module.exports.indentationFilter = [
'!**/*.dockerfile',
'!extensions/markdown-language-features/media/*.js',
'!extensions/markdown-language-features/notebook-out/*.js',
'!extensions/notebook-markdown-extensions/notebook-out/*.js',
'!extensions/markdown-math/notebook-out/*.js',
'!extensions/simple-browser/media/*.js',
];
@ -119,7 +119,7 @@ module.exports.copyrightFilter = [
'!resources/completions/**',
'!extensions/configuration-editing/build/inline-allOf.ts',
'!extensions/markdown-language-features/media/highlight.css',
'!extensions/notebook-markdown-extensions/notebook-out/**',
'!extensions/markdown-math/notebook-out/**',
'!extensions/html-language-features/server/src/modes/typescript/*',
'!extensions/*/server/bin/*',
'!src/vs/editor/test/node/classification/typescript-test.ts',

View file

@ -338,7 +338,7 @@ const webpackMediaConfigFiles = [
// Additional projects to run esbuild on. These typically build code for webviews
const esbuildMediaScripts = [
'markdown-language-features/esbuild.js',
'notebook-markdown-extensions/esbuild.js',
'markdown-math/esbuild.js',
];
async function webpackExtensions(taskName, isWatch, webpackConfigLocations) {
const webpack = require('webpack');

View file

@ -417,7 +417,7 @@ const webpackMediaConfigFiles = [
// Additional projects to run esbuild on. These typically build code for webviews
const esbuildMediaScripts = [
'markdown-language-features/esbuild.js',
'notebook-markdown-extensions/esbuild.js',
'markdown-math/esbuild.js',
];
export async function webpackExtensions(taskName: string, isWatch: boolean, webpackConfigLocations: { configPath: string, outputRoot?: string }[]) {

View file

@ -30,7 +30,7 @@ exports.dirs = [
'extensions/markdown-language-features',
'extensions/merge-conflict',
'extensions/microsoft-authentication',
'extensions/notebook-markdown-extensions',
'extensions/markdown-math',
'extensions/npm',
'extensions/php-language-features',
'extensions/search-result',

View file

Before

Width:  |  Height:  |  Size: 903 B

After

Width:  |  Height:  |  Size: 903 B

View file

@ -1,5 +1,5 @@
{
"name": "notebook-markdown-extensions",
"name": "markdown-math",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",

View file

@ -0,0 +1,4 @@
{
"displayName": "Markdown Notebook math",
"description": "Adds math support to markdown in notebooks."
}

View file

@ -1,4 +0,0 @@
{
"displayName": "Markdown Notebook math",
"description": "Provides rich language support for Markdown."
}