UNPKG

@rshirohara/rekurke-stringify

Version:

rekurke plugin to add support for serializing kakuyomu novel format.

9 lines (8 loc) 313 B
import { toKakuyomuNovel } from "./lib/index.js"; export const rekurkeStringify = function () { const compiler = (doc) => { return toKakuyomuNovel(doc); }; // biome-ignore lint/style/useNamingConvention: interface defined in external module Object.assign(this, { Compiler: compiler }); };