First block should not be have auto language

This commit is contained in:
Jonatan Heyman 2023-01-17 01:25:07 +01:00
parent d361a5a073
commit 80feeed26c
2 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,7 @@
const modChar = window.platform.isMac ? "⌘" : "Ctrl" const modChar = window.platform.isMac ? "⌘" : "Ctrl"
const initialContent = ` const initialContent = `
text-a text
Welcome to Heynote! Welcome to Heynote!
[${modChar} + Enter] Insert new note block [${modChar} + Enter] Insert new note block

View File

@ -37,6 +37,5 @@ export const LANGUAGES = [
new Language("xml", "XML", xmlLanguage.parser, "xml"), new Language("xml", "XML", xmlLanguage.parser, "xml"),
new Language("cpp", "C++", cppLanguage.parser, "cpp"), new Language("cpp", "C++", cppLanguage.parser, "cpp"),
new Language("rust", "Rust", rustLanguage.parser, "rust"), new Language("rust", "Rust", rustLanguage.parser, "rust"),
] ]