This package is a port of @tiptap/extension-code-block-lowlight
but for highlighting inline codes in the TipTap editor. It uses Lowlight to highlight codes.
npm install @nartix/tiptap-inline-code-highlight
import CodeInlineLowlight from '@nartix/tiptap-inline-code-highlight';
const editor = new Editor({
extensions: [
CodeInlineLowlight.configure({
lowlight,
}),
],
});