@plutojl/lang-julia
v1.2.0
Published
Julia language support for the CodeMirror code editor
Readme
@plutojl/lang-julia 
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.
Demo site
See this parser in action on our demo page: https://juliapluto.github.io/lang-julia-demo/
Usage
import { julia } from "lang-julia";
let state = EditorState.create({
...
extensions: [
julia(),
...
]
});