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

table_header_row.js « nodes « markdown « behaviors « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8aa497066c498e4db09d6ad55174fbdbe176000 (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 { HIGHER_PARSE_RULE_PRIORITY } from '../constants';
import TableRow from './table_row';

const CENTER_ALIGN = 'center';

// Transforms generated HTML back to GFM for Banzai::Filter::MarkdownFilter
export default () => ({
  name: 'table_header_row',
  schema: {
    content: 'table_cell+',
    parseDOM: [
      {
        tag: 'thead tr',
        priority: HIGHER_PARSE_RULE_PRIORITY,
      },
    ],
    toDOM: () => ['tr', 0],
  },
  toMarkdown: (state, node) => {
    const cellWidths = TableRow().toMarkdown(state, node);

    state.flushClose(1);

    state.write('|');
    node.forEach((cell, _, i) => {
      if (i) state.write('|');

      state.write(cell.attrs.align === CENTER_ALIGN ? ':' : '-');
      state.write(state.repeat('-', cellWidths[i]));
      state.write(cell.attrs.align === CENTER_ALIGN || cell.attrs.align === 'right' ? ':' : '-');
    });
    state.write('|');

    state.closeBlock(node);
  },
});