UNPKG

569 BJavaScriptView 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 * Removes `<style>` block added by Google Sheets to a copied content.
7 *
8 * @param documentFragment element `data.content` obtained from clipboard
9 */
10export default function removeStyleBlock(documentFragment, writer) {
11 for (const child of Array.from(documentFragment.getChildren())) {
12 if (child.is('element', 'style')) {
13 writer.remove(child);
14 }
15 }
16}