Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(Tables): require at least one cell in the header
Fixes #4793.

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud authored and mejo- committed Mar 12, 2024
commit 3a3df71b0ac4606c424a451b048e1c6e1d46b3ba
2 changes: 1 addition & 1 deletion src/nodes/Table/TableHeadRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import TableRow from './TableRow.js'

export default TableRow.extend({
name: 'tableHeadRow',
content: 'tableHeader*',
content: 'tableHeader+',

toMarkdown(state, node) {
state.write('|')
Expand Down