ruschaaf / extended-embedded-languages

VSCode extension for better syntax highlighting of embedded languages
https://marketplace.visualstudio.com/items?itemName=ruschaaf.extended-embedded-languages
MIT License
18 stars 5 forks source link

Can i use this extension for a my own language #12

Closed IsmailCLN closed 4 months ago

IsmailCLN commented 4 months ago

I have a simple programming language that I created for my precompiler. This language includes a code block syntax similar to the sql syntax in markdown, which allows me to embed another language within it.

I assume that your extension is for popular languages. Is it possible for me to use your project for my own language as well?

ruschaaf commented 4 months ago

Thanks for your interest. Yeah this extension is really about adding new syntax highlighting rules to existing languages. If you are in control of the language yourself you don’t need this, but can include those embedded languages directly in your syntax highlighter. You could use the language files in this extension as a guide for how to do it.

IsmailCLN commented 4 months ago

Thank you, i'll do that.