summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/figure.js
blob: b2076894412614fe8e0cbdcc4d936d79b5b181f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Node } from '@tiptap/core';

export default Node.create({
  name: 'figure',
  content: 'block+',
  group: 'block',
  defining: true,

  parseHTML() {
    return [{ tag: 'figure' }];
  },

  renderHTML({ HTMLAttributes }) {
    return ['figure', HTMLAttributes, 0];
  },
});