mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-19 22:27:52 +08:00
9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
export default new Node()
|
|
.name('text')
|
|
.schema(() => ({
|
|
group: 'inline',
|
|
}))
|
|
.create()
|