🎶 Sym - 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台

📕 思源笔记 - 一款桌面端笔记应用,支持 Windows、Mac 和 Linux

🎸 Solo - B3log 分布式社区的博客端节点,欢迎加入下一代社区网络

♏ Vditor - 一款浏览器端的 Markdown 编辑器

TinyMCE 3.3.9.2 升级到 3.4.3.2 遇到的问题

闲来无事,把 B3log Solo 所用编辑器 TinyMCE 从 3.3.9.2 升级到了 3.4.3.2。结果出现了2个问题。

可能由于我没看 changelog 所致吧。因为实在太多了,人又懒,结果。。。

1. 使用“编辑 HTML 源代码”功能,标签中无内容(如:<a class='text'></a>)将会被移除。

修改文件tiny_mce/themes/advanced/js/source_editor.js

saveContent() 中

tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {sorce_view: true});

改为

tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {format : 'raw'});

 

onLoadInit() 中

document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({sorce_view: true});

改为

document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({format : 'raw'});

2. 使用 SyntaxHighLighter 插入 html 代码,不会进行高亮。

修改文件:tiny_mce/plugins/syntaxhl/syntaxhl.js

unescapeHtml(text) 中

return text; 

改为

return text.replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&amp;/g,"&");

 

escapeHtml(text) 中

return text; 

改为

return text.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;");
 

3. 高亮插件 SyntaxHighlighter 在 Chrome 中出现纵向滚动条,且右边框看不见。

修改文件:SyntaxHighlighter/styles/*.css

.syntaxhighlighter {
    width: 100% !important;
    margin: 1em 0 1em 0 !important;
    position: relative !important;
    overflow-x: auto !important;
    font-size: 1em !important;
}

改为

.syntaxhighlighter {
    width: auto;
    margin: 1em 0 1em 0 !important;
    position: relative !important;
    overflow-x: auto;
    overflow-y: hidden;
    font-size: 1em !important;
}

欢迎注册黑客派社区,开启你的博客之旅。让学习和分享成为一种习惯!

留下你的脚步