0.3.0 • Published 11 months ago

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

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

wikiast-util-from-slate-plate-ast

Transform slate-plate based WYSIWYG editor's AST back to wikiast.

Usage

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

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

11 months ago

0.2.0

11 months ago

0.1.0

11 months ago