vscode-ebnf

EBNF for Visual Studio Code
Mirror of https://github.com/Jamozed/vscode-ebnf
git clone http://git.omkov.net/vscode-ebnf
Log | Tree | Refs | README | LICENCE | Download

AuthorJamozed <[email protected]>
Date2022-11-22 03:13:08
Commite0ad0c6d509c3bfac7c47989b3d5a25f9d02e40c
Parentad4a2a877f0de22273aa68e548da6a041b2e27b5

Bump version to 1.0.5

Diffstat

M package.json | 2 +-
M syntaxes/ebnf.mdCodeblock.json | 42 ++++++++++++++++++++++++------------------

2 files changed, 25 insertions, 19 deletions

diff --git a/package.json b/package.json
index 4d72fbe..9044f49 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "vscode-ebnf",
-	"version": "1.0.4",
+	"version": "1.0.5",
 	"publisher": "OMKOV",
 	"engines": { "vscode": "^1.0.0" },
 	"license": "MIT",
diff --git a/syntaxes/ebnf.mdCodeblock.json b/syntaxes/ebnf.mdCodeblock.json
index 2f3d201..a4203b6 100644
--- a/syntaxes/ebnf.mdCodeblock.json
+++ b/syntaxes/ebnf.mdCodeblock.json
@@ -1,28 +1,28 @@
 {
-  "fileTypes": [],
-  "injectionSelector": "L:markup.fenced_code.block.markdown",
-  "patterns": [
-    {
-      "include": "#ebnf-code-block"
-    }
-  ],
-  "repository": {
-    "ebnf-code-block": {
-      "begin": "(?<=[`~])ebnf(\\s+[^`~]*)?$",
-      "end": "(^|\\G)(?=\\s*[`~]{3,}\\s*$)",
-      "patterns": [
-        {
-          "begin": "(^|\\G)(\\s*)(.*)",
-          "while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",
-          "contentName": "meta.embedded.block.ebnf",
-          "patterns": [
-            {
-              "include": "text.ebnf"
-            }
-          ]
-        }
-      ]
-    }
-  },
-  "scopeName": "markdown.ebnf.codeblock"
+	"fileTypes": [],
+	"injectionSelector": "L:markup.fenced_code.block.markdown",
+	"patterns": [
+		{
+			"include": "#ebnf-code-block"
+		}
+	],
+	"repository": {
+		"ebnf-code-block": {
+			"begin": "(?<=[`~])ebnf(\\s+[^`~]*)?$",
+			"end": "(^|\\G)(?=\\s*[`~]{3,}\\s*$)",
+			"patterns": [
+				{
+					"begin": "(^|\\G)(\\s*)(.*)",
+					"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",
+					"contentName": "meta.embedded.block.ebnf",
+					"patterns": [
+						{
+							"include": "text.ebnf"
+						}
+					]
+				}
+			]
+		}
+	},
+	"scopeName": "markdown.ebnf.codeblock"
 }