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