summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/figure_caption.js
blob: ffd1b474f0318a23c99a7b779c0e7047f7b3ea46 (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: 'figureCaption',
  content: 'inline*',
  group: 'block',
  defining: true,

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

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