UNPKG

@steroidsjs/ckeditor5

Version:

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

53 lines (44 loc) 1.3 kB
/** * @license Copyright (c) 2003-2021, 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 { UpcastWriter } from 'ckeditor5/src/engine'; import removeBoldWrapper from '../filters/removeboldwrapper'; import { unwrapParagraphInListItem } from '../filters/list'; 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 ); } }