start moving everything to components
This commit is contained in:
25
packages/_legacy-tiptap/src/utils/mark.js
Normal file
25
packages/_legacy-tiptap/src/utils/mark.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import Extension from './extension'
|
||||
|
||||
export default class Mark extends Extension {
|
||||
|
||||
constructor(options = {}) {
|
||||
super(options)
|
||||
}
|
||||
|
||||
get type() {
|
||||
return 'mark'
|
||||
}
|
||||
|
||||
get view() {
|
||||
return null
|
||||
}
|
||||
|
||||
get schema() {
|
||||
return null
|
||||
}
|
||||
|
||||
command() {
|
||||
return () => {}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user