From ed188dffe0c5be4a9910f9309af18f125d278c13 Mon Sep 17 00:00:00 2001 From: Joshua Hayes Date: Fri, 23 Feb 2024 13:15:18 +0200 Subject: [PATCH] Add support for MATLAB --- README.md | 1 + package.json | 1 + src/supported-languages.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 7b59f88..03c13fa 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ This extension comes with 2 actions that you can configure the way you want and * HTML * JavaScript * Markdown +* MATLAB * MDX * PHP * PostCSS diff --git a/package.json b/package.json index 6ad7371..bcb7687 100644 --- a/package.json +++ b/package.json @@ -63,6 +63,7 @@ "onLanguage:javascript", "onLanguage:javascriptreact", "onLanguage:markdown", + "onLanguage:matlab", "onLanguage:mdx", "onLanguage:php", "onLanguage:postcss", diff --git a/src/supported-languages.ts b/src/supported-languages.ts index b9488fc..15cbcd0 100644 --- a/src/supported-languages.ts +++ b/src/supported-languages.ts @@ -7,6 +7,7 @@ export default [ 'javascript', 'javascriptreact', 'markdown', + 'matlab', 'mdx', 'php', 'postcss',