如何防止 CKEditor 过滤掉 tel 协议?
最好的情况是完全阻止 CKEditor 过滤。
HTML:
<a href="tel:1-800-222-3334"> (800) ABC - DEFG </a>
配置:
CKEDITOR.editorConfig = function( config ) {
config.toolbar = 'Full';
config.forcePasteAsPlainText = true;
config.width = '100%';
config.height = '500px';
config.toolbarCanCollapse = true;
config.format_p = { element: 'p' };
config.format_div = false;
config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address';
config.allowedContent = true;
config.extraAllowedContent = true;
config.toolbar_Full = [...];
config.protectedSource.push( /<i[\s\S]*?\>/g ); //allows beginning <i> tag
config.protectedSource.push( /<\/i[\s\S]*?\>/g ); //allows ending </i> tag
}