21 lines
377 B
JavaScript
21 lines
377 B
JavaScript
|
/* eslint-disable class-methods-use-this */
|
||
|
|
||
|
import { Node } from 'tiptap';
|
||
|
import { defaultMarkdownSerializer } from 'prosemirror-markdown';
|
||
|
|
||
|
export default class Text extends Node {
|
||
|
get name() {
|
||
|
return 'text';
|
||
|
}
|
||
|
|
||
|
get schema() {
|
||
|
return {
|
||
|
group: 'inline',
|
||
|
};
|
||
|
}
|
||
|
|
||
|
toMarkdown(state, node) {
|
||
|
defaultMarkdownSerializer.nodes.text(state, node);
|
||
|
}
|
||
|
}
|