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

TableHeadRow.js « nodes « src - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8845ae462c77ef3c9aa13dc52f9ba4fac143d01f (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 { Node, mergeAttributes } from '@tiptap/core'

export default Node.create({
	name: 'tableHeadRow',
	content: 'tableHeader*',
	tableRole: 'row',

	addOptions() {
		return {
			HTMLAttributes: {},
		}
	},

	parseHTML() {
		return [
			{ tag: 'tr' },
		]
	},

	renderHTML({ HTMLAttributes }) {
		return ['tr', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
	},

	toMarkdown(state, node) {
		state.write('|')
		state.renderInline(node)
		state.ensureNewLine()
		state.write('|')
		node.forEach(cell => {
			state.write(state.repeat('-', cell.textContent.length + 2))
			state.write('|')
		})
		state.ensureNewLine()
	},

})