summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/footnotes_section.js
blob: 2fdad39635e914dbe4e38a8ba9100f631819ca6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { mergeAttributes, Node } from '@tiptap/core';

export default Node.create({
  name: 'footnotesSection',

  content: 'footnoteDefinition+',

  group: 'block',

  isolating: true,

  addOptions() {
    return {
      HTMLAttributes: {
        dir: 'auto',
      },
    };
  },

  parseHTML() {
    return [
      { tag: 'section.footnotes', skip: true },
      { tag: 'section.footnotes > ol', skip: true },
    ];
  },

  renderHTML({ HTMLAttributes }) {
    return [
      'ol',
      mergeAttributes(this.options.HTMLAttributes, HTMLAttributes, {
        class: 'footnotes gl-font-sm',
      }),
      0,
    ];
  },
});