/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module table/converters/table-cell-paragraph-post-fixer */ import type { Model } from 'ckeditor5/src/engine'; /** * Injects a table cell post-fixer into the model which inserts a `paragraph` element into empty table cells. * * A table cell must contain at least one block element as a child. An empty table cell will have an empty `paragraph` as a child. * * ```xml * * * * *
* ``` * * Will be fixed to: * * ```xml * * * * *
* ``` */ export default function injectTableCellParagraphPostFixer(model: Model): void;