tiptap/packages/html/index.ts
2020-09-04 13:44:27 +02:00

12 lines
402 B
TypeScript

import getSchema from '@tiptap/core'
import getHtmlFromFragment from './getHtmlFromFragment'
import { Node } from 'prosemirror-model'
import { Extensions } from '@tiptap/core'
export default function generateHtml(doc: object, extensions: Extensions): string {
const schema = getSchema(extensions)
const contentNode = Node.fromJSON(schema, doc)
return getHtmlFromFragment(contentNode, schema)
}