mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-22 08:07:50 +08:00
17 lines
237 B
TypeScript
17 lines
237 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
// export default new Node()
|
|
// .name('text')
|
|
// .schema(() => ({
|
|
// group: 'inline',
|
|
// }))
|
|
// .create()
|
|
|
|
export default class Text extends Node {
|
|
|
|
name = 'text'
|
|
|
|
group = 'inline'
|
|
|
|
}
|