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

footnote_reference.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: ae5b8edc7afc463474093f280023ebc7547ddc56 (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
37
38
39
40
import { Node, mergeAttributes } from '@tiptap/core';
import { PARSE_HTML_PRIORITY_HIGHEST } from '../constants';

const extractFootnoteIdentifier = (element) =>
  /^fnref-(\w+)-\d+$/.exec(element.querySelector('a')?.getAttribute('id'))?.[1];

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

  inline: true,

  group: 'inline',

  atom: true,

  draggable: true,

  selectable: true,

  addAttributes() {
    return {
      identifier: {
        default: null,
        parseHTML: extractFootnoteIdentifier,
      },
      label: {
        default: null,
        parseHTML: extractFootnoteIdentifier,
      },
    };
  },

  parseHTML() {
    return [{ tag: 'sup.footnote-ref', priority: PARSE_HTML_PRIORITY_HIGHEST }];
  },

  renderHTML({ HTMLAttributes: { label, ...HTMLAttributes } }) {
    return ['sup', mergeAttributes(HTMLAttributes), label];
  },
});