Fix mixed parser

This commit is contained in:
Gregory Schier
2023-03-17 17:57:43 -07:00
parent 43787a6b9e
commit d02d4bc76f
3 changed files with 11 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ import { LanguageSupport, LRLanguage } from '@codemirror/language';
import { parser } from './text';
const textLanguage = LRLanguage.define({
name: 'text',
parser,
languageData: {},
});