UNPKG

602 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module paste-from-office/filters/br
7 */
8import { type UpcastWriter, type ViewDocumentFragment } from 'ckeditor5/src/engine.js';
9/**
10 * Transforms `<br>` elements that are siblings to some block element into a paragraphs.
11 *
12 * @param documentFragment The view structure to be transformed.
13 */
14export default function transformBlockBrsToParagraphs(documentFragment: ViewDocumentFragment, writer: UpcastWriter): void;