Alternative to Tiny MCE

安稳与你 提交于 2019-12-06 04:42:01

What about FCKeditor?

CKEditor the new FCKEditor

Attacklab is used by StackOverflow, and myself soon enough. It's WYSIWYM, but still quite useful.

In the past, I have used YUI Rich Text Editor. There's actually two versions, one more basic than the other.

PunyMCE is a newer contender by the same guys that make TinyMCE. It's super lightweight and supports the important requirements of being themeable, plugin capable, and supports internationalization.

FCKEditor is quite good, you can try that.

peirix's comment was helpful.

Tried a couple of the suggested ones and apparently Tiny or FCK are the best of the crop.

--EDIT-- I found and liked: http://markitup.jaysalvat.com/

--EDIT 2012-- I have now moved back to a minimal/light weight tinyMCE installation using jQuery.

Personally my favorite as of late has been Quill. Cleaner interface, simple documentation and overall cleaner code.

Here is their quick start:

var quill = new Quill('#editor', {
    theme: 'snow'
  });
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.4/quill.snow.css" rel="stylesheet">

<!-- Create the editor container -->
<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>

<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.4/quill.js"></script>

Website: https://quilljs.com/

Here is their playground: https://quilljs.com/playground/

Finally, they do a great job of comparing themselves to other editors.

CKEditor, TinyMCE, Draft, ProseMirror and Trix: https://quilljs.com/guides/comparison-with-other-rich-text-editors/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!