tiptap/packages/core/src/helpers/generateHTML.ts
Philipp Kühn e07a5b625d
refactor: Use named exports instead of default exports (#2238)
* use named exports instead of default exports

* fix tests

Co-authored-by: Philipp Kühn <philippkuehn@MacBook-Pro-von-Philipp.local>
2021-12-06 12:00:09 +01:00

12 lines
423 B
TypeScript

import { Node } from 'prosemirror-model'
import { getSchema } from './getSchema'
import { getHTMLFromFragment } from './getHTMLFromFragment'
import { Extensions, JSONContent } from '../types'
export function generateHTML(doc: JSONContent, extensions: Extensions): string {
const schema = getSchema(extensions)
const contentNode = Node.fromJSON(schema, doc)
return getHTMLFromFragment(contentNode.content, schema)
}