Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 688 Bytes

File metadata and controls

32 lines (24 loc) · 688 Bytes

@canner/slate-icon-codeBlock

npm version

Icon:

import CodeBlock from "@canner/slate-icon-codeBlock";

Plugin:

import { CodeBlockPlugin } from "@canner/slate-icon-codeBlock";

Also you'll need to add these two plugins to make code blocks work:

import EditPrism from "slate-prism";
import EditCode from "slate-edit-code";

plugins = [
  EditPrism({
    onlyIn: node => node.type === "code_block",
    getSyntax: node => node.data.get("syntax")
  }),
  EditCode({
    onlyIn: node => node.type === "code_block"
  })
];