Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 533 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 533 Bytes

DEPRECATED: see https://github.com/JuliaPluto/lang-julia instead

lang-julia

This package implements Julia language support for the CodeMirror 6 code editor.

Features:

  • Syntax highlighting
  • Indentation
  • Keyword completion (optional)

Usage

import { julia } from "lang-julia";

let state = EditorState.create({
  ...
  extensions: [
    julia(),
    ...
  ]
});

Consult TypeScript type definition for additional documentation.