(element)
| 403 | } |
| 404 | |
| 405 | needsTableSeparator(element) { |
| 406 | if (config.parser.removeBlankTableCells) { |
| 407 | const content = element.previousSibling?.textContent |
| 408 | return content && /\S/.test(content) |
| 409 | } else { |
| 410 | return element.previousSibling |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | // Margin translation |
| 415 |