This package implements Julia language support for the CodeMirror 6 code editor.
This is a wrapper around @plutojl/lezer-julia. Go there for issues, latest developments, releases and more.
See this parser in action on our demo page: https://juliapluto.github.io/lang-julia-demo/
import { julia } from "lang-julia";
let state = EditorState.create({
...
extensions: [
julia(),
...
]
});