When the official editor of Node-RED was the Ace editor, even though it couldn't support all languages of the Ace editor, I still had the option of getting additional languages on their GitHub page, just so I could develop a node with support for other languages than the ones that Node-RED support by default... The page where I can find additional languages for the Ace Editor is this one:
However, I'd like to add additional languages to the Monaco editor since Node-RED is moving towards making it the default one... But checking the source code I see that the languages in Monaco seem to be all included in the file node-red/packages/node_modules/@node-red/editor-client/src/vendor/monaco/dist/editor.js
... And I can only use the languages that are officially supported in Monaco
https://microsoft.github.io/monaco-editor/
I'd like to add support for LaTex in the editor of my node though, I've found a file for highlight syntax that Monaco supports
But I'm not sure if I can use it in Node-RED. Is it possible? Can I add additional languages to the editor of a node that I'm developing if I have a file with the Monarch syntax highlighting?