0.0.1-alpha.11 • Published 4 years ago

@zhujianshi/slate-code-math v0.0.1-alpha.11

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

name: slate-code-math

menu: Plugins

what

slate-code-math 提供了在 slate 框架下的数学公式功能.

install

yarn add @zhujianshi/slate-code-base

usage

import createCodeBase from '@zhujianshi/slate-code-base'; //slate-code-math depend on slate-code-base
import createMathPlugin from '@zhujianshi/slate-code-math';
import '@zhujianshi/slate-code-math/lib/index.css'; // Don't forget import the css file
import '@zhujianshi/slate-code-base/lib/index.css'; // Don't forget import the css file
import '@zhujianshi/slate-code-base/lib/index.css';
const yourSlatePlugins = [
  //..
  createCodeBase(option),
  createMathPlugin(option),
];