12 lines
371 B
JavaScript
12 lines
371 B
JavaScript
import { registerCodeHighlighting } from "@lexical/code";
|
|
import { useLexicalComposerContext } from "@lexical/react/LexicalComposerContext";
|
|
import { useEffect } from "react";
|
|
|
|
export default function CodeHighlightPlugin() {
|
|
const [editor] = useLexicalComposerContext();
|
|
useEffect(() => {
|
|
return registerCodeHighlighting(editor);
|
|
}, [editor]);
|
|
return null;
|
|
}
|