tinymce 代码高亮就像 stackoverflow 一样?
我使用tinymce作为我的文本编辑器,我想要工具栏上的一个按钮的代码突出显示功能,但我想要一个简单的功能,就像stackoverflow使用的那样,deos任何人都知道那里的任何东西,或者deos tinymce有这样的东西内置:))感谢您的支持!
ps我使用jquery tinymce
im using tinymce for my text editor, i wanted a code highlighting feature for one of the buttons on the toolbar, but i wanted a simple one like the one stackoverflow uses, deos anybody know of anything out there, or deos tinymce have something like this build in :)) thanks for the support!
p.s. im using the jquery tinymce
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Stackoverflow 使用标记语言 Markdown。服务器端由 MarkdownSharp “渲染”(C# 实现,但有 PHP 端口 以及)。客户端文本编辑器是 WMD。
语法突出显示是使用 code-prettify 完成的。
请参阅https://meta.stackexchange.com/questions /10369/which-tools-and-technologies-build-the-stack-exchange-network。
您可能无法轻松地将其折叠到 TinyMCE 中。您要么使用 Markdown,要么使用所见即所得文本编辑器。两者同时存在就是一个矛盾。
Stackoverflow uses the markup language Markdown. Server-side it's "rendered" by MarkdownSharp (C# implementation, but there are PHP ports as well). The client-side text editor is WMD.
Syntax highlighting is done using code-prettify.
See https://meta.stackexchange.com/questions/10369/which-tools-and-technologies-build-the-stack-exchange-network.
You probably won't be able to easily fold this into TinyMCE. You're either using Markdown, or a WYSIWYG text editor. Both at the same time is a contradiction.