Welcome to mirror list, hosted at ThFree Co, Russian Federation.

figure_caption.js « extensions « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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];
  },
});