aboutsummaryrefslogtreecommitdiff
path: root/docs/AddingALanguage.md
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2022-01-24 20:58:26 -0600
committerMatt Godbolt <matt@godbolt.org>2022-01-24 20:58:26 -0600
commit2c4417bca810b652e543e0e12c7af0bb1eb5274c (patch)
tree6ba10ed54a795f4c1307fd696aaea632952be6c8 /docs/AddingALanguage.md
parent1c5277b5e22caa885c917c67a4f5754f73f9c213 (diff)
parentfc23b620b4da41c565f4e99633cfc1de9df8a656 (diff)
downloadcompiler-explorer-gh-1692.tar.gz
compiler-explorer-gh-1692.zip
Merge remote-tracking branch 'origin/main' into sg/refactor/asm-docs-to-typescriptgh-1692
Diffstat (limited to 'docs/AddingALanguage.md')
-rw-r--r--docs/AddingALanguage.md2
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