14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
import { Node } from '@tiptap/core';
|
|
|
|
/**
|
|
* This extension allows you to create text nodes.
|
|
* @see https://www.tiptap.dev/api/nodes/text
|
|
*/
|
|
const Text = Node.create({
|
|
name: 'text',
|
|
group: 'inline',
|
|
});
|
|
|
|
export { Text, Text as default };
|
|
//# sourceMappingURL=index.js.map
|