From f1189c1e04b793f1254266b6166c125b345fb97d Mon Sep 17 00:00:00 2001 From: Lucas Martin Segurado Date: Wed, 15 Mar 2023 16:16:59 -0300 Subject: [PATCH] Removed duplicated element --- dist/mathml.json | 11 ----------- package.json | 2 +- tasks/generateTypes.ts | 4 ---- 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/dist/mathml.json b/dist/mathml.json index 121d654..22af8fb 100644 --- a/dist/mathml.json +++ b/dist/mathml.json @@ -90,17 +90,6 @@ } ] }, - { - "name": "mmultiscripts", - "description": "The `` MathML element is used to attach an arbitrary number of subscripts and superscripts to an expression at once, generalizing the ` element`. Scripts can be either prescripts (placed before the expression) or postscripts (placed after it).", - "attributes": [], - "references": [ - { - "name": "MDN Reference", - "url": "https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts" - } - ] - }, { "name": "mmultiscripts", "description": "The `` MathML element is used to attach an arbitrary number of subscripts and superscripts to an expression at once, generalizing the `` element. Scripts can be either prescripts (placed before the expression) or postscripts (placed after it).", diff --git a/package.json b/package.json index 71b0523..bb03bf7 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "MathML extension for VS Code", "author": "Lucas M. Segurado", "icon": "media/mathml.png", - "version": "1.0.1", + "version": "1.0.2", "publisher": "michijs", "repository": "https://github.com/michijs/vscode-mathml", "files": [ diff --git a/tasks/generateTypes.ts b/tasks/generateTypes.ts index 08b61dd..1822c85 100644 --- a/tasks/generateTypes.ts +++ b/tasks/generateTypes.ts @@ -41,10 +41,6 @@ const jsonData: HTMLDataV1 = { "mi", "The `` MathML element indicates that the content should be rendered as an identifier such as function names, variables or symbolic constants. You can also have arbitrary text in it to mark up terms.", ), - element( - "mmultiscripts", - "The `` MathML element is used to attach an arbitrary number of subscripts and superscripts to an expression at once, generalizing the ` element`. Scripts can be either prescripts (placed before the expression) or postscripts (placed after it).", - ), element( "mn", 'The `` MathML element represents a numeric literal which is normally a sequence of digits with a possible separator (a dot or a comma). However, it is also allowed to have arbitrary text in it which is actually a numeric quantity, for example "eleven".',