CKEditor5 支持 WPS 贴贴文字图片,默认贴贴进入空白空格

简介: CKEditor5 支持 WPS 贴贴文字图片,默认贴贴进入空白空格

一、简介

  • 现在国内用 WPS 的人很多,有时候文档编辑好了,想直接贴贴到 CKEditor 编辑中,发现贴贴进去之后都是空格符号,显示空白的,无法识别内容,这个是 WPSOffice 的格式问题。
  • 想要支持 WPS 解析,那就必须要会 自定义编辑器自定义编辑器 步骤很简单并不难,然后官方提供了 Office 的解析插件 @ckeditor/ckeditor5-paste-from-office,现在只需要在这个插件的基础上加上 WPS 的解析代码,然后打包生成一个自定义编辑器,导入使用即可。

二、操作步骤

  • 按照下面调整完成之后, WPSOffice 都可以支持贴贴。
  • 在自定义编辑过程中,看项目中是否已经安装好了 @ckeditor/ckeditor5-paste-from-office,一般默认编辑器是有的,所以直接去找到 node_modules/@ckeditor/ckeditor5-paste-from-office 文件夹即可。
$ npm install --save-dev @ckeditor/ckeditor5-paste-from-office
  • 打开 ckeditor5-paste-from-office/src/filters 文件夹,调整过滤代码。


  • space.js 文件调整,这个是支持文字的。
export function normalizeSpacerunSpans( htmlDocument ) {
    htmlDocument.querySelectorAll( 'span[style*=spacerun]' ).forEach( el => {
        const innerTextLength = el.innerText.length || 0;
        el.innerHTML = Array( innerTextLength + 1 ).join( '\u00A0 ' ).substr( 0, innerTextLength );
    } );
}
  • 上面是原代码,调整为下面的代码,其实就是加了个 if 判断,其他代码没变。
export function normalizeSpacerunSpans( htmlDocument ) {
    htmlDocument.querySelectorAll( 'span[style*=spacerun]' ).forEach( el => {
        // 针对 wps 添加的判断
        if (el.childNodes[ 0 ].data) {
            const innerTextLength = el.innerText.length || 0;
            el.innerHTML = Array( innerTextLength + 1 ).join( '\u00A0 ' ).substr( 0, innerTextLength );
        }
    });
}
  • image.js 文件调整,这个是支持 WPS 图片的。
    只需要添加 if (!images) {} 这段代码放到 if (images) {} 之前即可。
function extractImageDataFromRtf( rtfData ) {
    if ( !rtfData ) {
        return [];
    }
    const regexPictureHeader = /{\\pict[\s\S]+?\\bliptag-?\d+(\\blipupi-?\d+)?({\\\*\\blipuid\s?[\da-fA-F]+)?[\s}]*?/;
    const regexPicture = new RegExp( '(?:(' + regexPictureHeader.source + '))([\\da-fA-F\\s]+)\\}', 'g' );
    const images = rtfData.match( regexPicture );
    const result = [];
    // 针对 wps 添加的判断
    if (!images) {
        regexPictureHeader = /{\\pict[\s\S]+?(\\pngblip-?\d+)?(\\wmetafile8-?\d+)?{\\\*\\blipuid\s?[\da-fA-F]+[\s}]*?/;
        regexPicture = new RegExp( '(?:(' + regexPictureHeader.source + '))([\\da-fA-F\\s]+)\\}', 'g' );
        images = rtfData.match( regexPicture );
    }
    if ( images ) {
        for ( const image of images ) {
            let imageType = false;
            if ( image.includes( '\\pngblip' ) ) {
                imageType = 'image/png';
            } else if ( image.includes( '\\jpegblip' ) ) {
                imageType = 'image/jpeg';
            }
            if ( imageType ) {
                result.push( {
                    hex: image.replace( regexPictureHeader, '' ).replace( /[^\da-fA-F]/g, '' ),
                    type: imageType
                } );
            }
         }
    }
    return result;
}


相关文章
|
开发者 iOS开发
【Markdown小技巧】 整理小图标和表情符号
让博客变得更加优美,你需要这些萌萌的、好看的表情符号。以下是我收集的一些表情符号和小图标,分享给大家。
【Markdown小技巧】 整理小图标和表情符号
wps插入图片显示不全、混乱
wps插入图片显示不全、混乱
101 0
|
4月前
|
开发者
无法拖拽选中文字的在线电子书的做笔记方法 —— html文本提取大法
无法拖拽选中文字的在线电子书的做笔记方法 —— html文本提取大法
37 0
|
5月前
ueditor1.5 百度富文本 编辑器增加字间距功能及按钮
ueditor1.5 百度富文本 编辑器增加字间距功能及按钮
73 0
搜索和替换PPT里面指定字体文字的(某些字体无法随演示文稿一起保存)解决方案
搜索和替换PPT里面指定字体文字的(某些字体无法随演示文稿一起保存)解决方案
178 0
|
6月前
微信小游戏制作工具中文字设置的粗体不显示,怎么解决?
微信小游戏制作工具中文字设置的粗体不显示,怎么解决?
190 1
|
前端开发
Typora使用(包含Markdown使用及注意说明、修改css样式、自动上传图床)
Typora使用(包含Markdown使用及注意说明、修改css样式、自动上传图床)
Typora使用(包含Markdown使用及注意说明、修改css样式、自动上传图床)
|
XML 编译器 PHP
word 使用中遇到的小细节(按空格键后面字不见;从编译器粘贴的代码出现乱码,word标题内容折叠效果实现)
word 使用中遇到的小细节(按空格键后面字不见;从编译器粘贴的代码出现乱码,word标题内容折叠效果实现)
234 0
word 使用中遇到的小细节(按空格键后面字不见;从编译器粘贴的代码出现乱码,word标题内容折叠效果实现)