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

figure.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: 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];
  },
});