diff options
Diffstat (limited to 'docs/AddingALanguage.md')
-rw-r--r-- | docs/AddingALanguage.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/AddingALanguage.md b/docs/AddingALanguage.md index 9779e69e3..7b041f72b 100644 --- a/docs/AddingALanguage.md +++ b/docs/AddingALanguage.md @@ -13,7 +13,7 @@ If you want to add a new language to the site, you should follow this steps: } ``` - If the language is supported by Monaco Editor (You can find the - list [here](https://github.com/microsoft/monaco-languages/tree/main/src)), you should add it to the list of + list [here](https://github.com/microsoft/monaco-editor/tree/main/src/basic-languages)), you should add it to the list of languages inside the `MonacoEditorWebpackPlugin` config in `webpack.config.js` - If not, you should implement your own language mode; see `static/modes/asm-mode.js` as an example. Don't forget to *require* your mode file in `static/modes/_all.js`, in alphabetical order |