wikiast-util-to-slate-plate-ast
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

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" }] });

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i wikiast-util-to-slate-plate-ast

    Weekly Downloads

    0

    Version

    0.3.0

    License

    MIT

    Unpacked Size

    19.9 kB

    Total Files

    46

    Last publish

    Collaborators

    • linonetwo012