0.3.0 • Published 11 months ago

wikiast-util-to-slate-plate-ast v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

wikiast-util-to-slate-plate-ast

Get SlateJS AST (udecode/plate variant) from Wiki AST.

Usage

import { wikiAstToSlateAst } from "wikiast-util-to-slate-plate-ast";

const wikiast = [
  {
    type: "element",
    tag: "p",
    children: [{ type: "text" as const, text: "AAA", start: 0, end: 3 }],
    start: 0,
    end: 3,
  },
];
const slatePlateAst = wikiAstToSlateAst(wikiast);
expect(slatePlateAst).toEqual({ type: "p", children: [{ text: "AAA" }] });
0.3.0

11 months ago

0.2.0

11 months ago

0.1.0

11 months ago