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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/behaviors/markdown/nodes/table_header_row.js')
-rw-r--r--app/assets/javascripts/behaviors/markdown/nodes/table_header_row.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/assets/javascripts/behaviors/markdown/nodes/table_header_row.js b/app/assets/javascripts/behaviors/markdown/nodes/table_header_row.js
deleted file mode 100644
index d8aa497066c..00000000000
--- a/app/assets/javascripts/behaviors/markdown/nodes/table_header_row.js
+++ /dev/null
@@ -1,36 +0,0 @@
-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);
- },
-});