mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 12:51:35 +02:00
Merge pull request #14740 from overleaf/mj-table-ignore-blankline
[visual] Ignore blanklines before cells GitOrigin-RevId: d0886415c38f9c300f694169fa17bb3f66dd4202
This commit is contained in:
committed by
Copybot
parent
8668fd3a15
commit
a080c7294b
@@ -301,7 +301,8 @@ function parseTabularBody(
|
||||
} else if (
|
||||
currentChild.type.is('NewLine') ||
|
||||
currentChild.type.is('Whitespace') ||
|
||||
currentChild.type.is('Comment')
|
||||
currentChild.type.is('Comment') ||
|
||||
currentChild.type.is('BlankLine')
|
||||
) {
|
||||
const lastCell = getLastCell()
|
||||
if (!lastCell?.multiColumn) {
|
||||
|
||||
Reference in New Issue
Block a user