This repository was archived by the owner on May 12, 2026. It is now read-only.
Markdown Editor (CodeMirror) available modes #47
Answered
by
Komediruzecki
Komediruzecki
asked this question in
Q&A
|
What are basic CodeMirror (Boost Note editor) code block modes which are available? |
Answered by
Komediruzecki
Sep 9, 2021
Replies: 2 comments
|
You can find all the modes here: Type triplet backtick followed by the mode name to start a code block section for that mode and end it with a triple backtick. For example: const someJavascript = "Hello World"For the above mode 'js' together with backticks, we would write ```js const someJavascript = "Hello World" ``` |
0 replies
Answer selected by
Komediruzecki
|
In latest release, the suggestion popup is available. Just type ``` and start typing your desired mode - suggestions will appear. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can find all the modes here:
https://codemirror.net/mode/
Type triplet backtick followed by the mode name to start a code block section for that mode and end it with a triple backtick.
For example:
For the above mode 'js' together with backticks, we would write
```js
const someJavascript = "Hello World"
```