mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-22 16:17:50 +08:00
31 lines
790 B
TypeScript
31 lines
790 B
TypeScript
import { Node } from 'prosemirror-model'
|
|
|
|
import { Extensions, JSONContent, TextSerializer } from '../types'
|
|
import { getSchema } from './getSchema'
|
|
import { getText } from './getText'
|
|
import { getTextSerializersFromSchema } from './getTextSerializersFromSchema'
|
|
|
|
export function generateText(
|
|
doc: JSONContent,
|
|
extensions: Extensions,
|
|
options?: {
|
|
blockSeparator?: string,
|
|
textSerializers?: Record<string, TextSerializer>,
|
|
},
|
|
): string {
|
|
const {
|
|
blockSeparator = '\n\n',
|
|
textSerializers = {},
|
|
} = options || {}
|
|
const schema = getSchema(extensions)
|
|
const contentNode = Node.fromJSON(schema, doc)
|
|
|
|
return getText(contentNode, {
|
|
blockSeparator,
|
|
textSerializers: {
|
|
...getTextSerializersFromSchema(schema),
|
|
...textSerializers,
|
|
},
|
|
})
|
|
}
|