UNPKG

ckeditor5-image-upload-base64

Version:

The development environment of CKEditor 5 – the best browser-based rich text editor.

52 lines (44 loc) 1.27 kB
/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module paste-from-office/normalizers/googledocsnormalizer */ import removeBoldWrapper from '../filters/removeboldwrapper'; import { unwrapParagraphInListItem } from '../filters/list'; import UpcastWriter from '@ckeditor/ckeditor5-engine/src/view/upcastwriter'; const googleDocsMatch = /id=("|')docs-internal-guid-[-0-9a-f]+("|')/i; /** * Normalizer for the content pasted from Google Docs. * * @implements module:paste-from-office/normalizer~Normalizer */ export default class GoogleDocsNormalizer { /** * Creates a new `GoogleDocsNormalizer` instance. * * @param {module:engine/view/document~Document} document View document. */ constructor( document ) { /** * @readonly * @type {module:engine/view/document~Document} */ this.document = document; } /** * @inheritDoc */ isActive( htmlString ) { return googleDocsMatch.test( htmlString ); } /** * @inheritDoc */ execute( data ) { const writer = new UpcastWriter( this.document ); removeBoldWrapper( data.content, writer ); unwrapParagraphInListItem( data.content, writer ); } }