@citedrive/codemirror-lang-bibtex
v6.4.1
Published
BibTeX language support for CodeMirror
Maintainers
Readme
@citedrive/codemirror-lang-bibtex
[ WEBSITE | ISSUES | FORUM | CHANGELOG | NPM ]
This package implements BibTeX language support for the CodeMirror code editor.
The project page has more information, a number of examples and the documentation.
This code is released under an MIT license.
Usage
import { EditorView, basicSetup } from "codemirror";
import { bibtex } from "@citedrive/codemirror-lang-bibtex";
const view = new EditorView({
parent: document.body,
doc: `fmt.Println("hello world")`,
extensions: [basicSetup, bibtex()],
});