All Projects → wysiwygjs → Wysiwyg.js

wysiwygjs / Wysiwyg.js

Licence: apache-2.0
wysiwyg contenteditable editor (minified+compression: 6kb)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wysiwyg.js

Pell
📝 the simplest and smallest WYSIWYG text editor for web, with no dependencies
Stars: ✭ 11,653 (+2140.96%)
Mutual labels:  text-editor, rich-text-editor, contenteditable, wysiwyg, wysiwyg-editor
am-editor
A rich text collaborative editor framework that can use React and Vue custom plug-ins. 一个富文本实时协同编辑器框架,可以使用React和Vue自定义插件。
Stars: ✭ 542 (+4.23%)
Mutual labels:  contenteditable, wysiwyg, text-editor, rich-text-editor, wysiwyg-editor
Megadraft
Megadraft is a Rich Text editor built on top of Facebook's Draft.JS featuring a nice default base of components and extensibility
Stars: ✭ 982 (+88.85%)
Mutual labels:  rich-text-editor, contenteditable, wysiwyg, wysiwyg-editor
Ckeditor5
Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.
Stars: ✭ 5,406 (+939.62%)
Mutual labels:  rich-text-editor, contenteditable, wysiwyg, wysiwyg-editor
typester
✒️ A WYSIWYG that gives you predictable and clean HTML
Stars: ✭ 29 (-94.42%)
Mutual labels:  wysiwyg, text-editor, rich-text-editor, wysiwyg-editor
Awesome Wysiwyg
A curated list of awesome WYSIWYG editors.
Stars: ✭ 1,801 (+246.35%)
Mutual labels:  rich-text-editor, contenteditable, wysiwyg, wysiwyg-editor
Slate Plugins
🔌 Next-gen slate plugins
Stars: ✭ 399 (-23.27%)
Mutual labels:  rich-text-editor, contenteditable, wysiwyg, wysiwyg-editor
Angular Froala Wysiwyg
Angular 4, 5, 6, 7, 8 and 9 plugin for Froala WYSIWYG HTML Rich Text Editor.
Stars: ✭ 696 (+33.85%)
Mutual labels:  text-editor, rich-text-editor, wysiwyg, wysiwyg-editor
ember-pell
Ember addon for simplest and smallest (1kB) WYSIWYG text editor for web, with no dependencies
Stars: ✭ 56 (-89.23%)
Mutual labels:  contenteditable, wysiwyg, text-editor, rich-text-editor
bangle.dev
Collection of higher level rich text editing tools. It powers the local only note taking app https://bangle.io
Stars: ✭ 541 (+4.04%)
Mutual labels:  wysiwyg, text-editor, rich-text-editor, wysiwyg-editor
Wysiwyg Editor
The next generation Javascript WYSIWYG HTML Editor.
Stars: ✭ 4,756 (+814.62%)
Mutual labels:  rich-text-editor, wysiwyg, wysiwyg-editor
Trix
A rich text editor for everyday writing
Stars: ✭ 16,546 (+3081.92%)
Mutual labels:  rich-text-editor, wysiwyg, wysiwyg-editor
wysiwyg-editor-php-sdk
PHP SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 37 (-92.88%)
Mutual labels:  wysiwyg, rich-text-editor, wysiwyg-editor
wysiwyg-editor-dotnet-sdk
.NET SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 23 (-95.58%)
Mutual labels:  wysiwyg, rich-text-editor, wysiwyg-editor
Text
📑 Collaborative document editing using Markdown
Stars: ✭ 282 (-45.77%)
Mutual labels:  rich-text-editor, wysiwyg, wysiwyg-editor
Graphviz Visual Editor
A web application for interactive visual editing of Graphviz graphs described in the DOT language.
Stars: ✭ 261 (-49.81%)
Mutual labels:  text-editor, wysiwyg, wysiwyg-editor
cazary
jQuery plugin of WYSIWYG editor that aims for fast, lightweight, stylish, customizable, cross-browser, and multi-language.
Stars: ✭ 12 (-97.69%)
Mutual labels:  wysiwyg, rich-text-editor, wysiwyg-editor
textbus
Textbus 是一个组件化的、数据驱动的富文本框架,支持在线协同编辑,同时也可以作为一个开箱即用的富文本编辑器,拥有非常好的扩展性和可定制性,是构建复杂富文本的不二之选!
Stars: ✭ 642 (+23.46%)
Mutual labels:  wysiwyg, rich-text-editor, wysiwyg-editor
Awesome Web Editor
🔨 Open source WEB editor summary
Stars: ✭ 306 (-41.15%)
Mutual labels:  rich-text-editor, wysiwyg, wysiwyg-editor
Trumbowyg
A lightweight and amazing WYSIWYG JavaScript editor under 10kB
Stars: ✭ 3,664 (+604.62%)
Mutual labels:  rich-text-editor, wysiwyg, wysiwyg-editor

Changes in Version 3:

  • Dropped jQuery dependency
  • CSS3 transitions if possible
  • Dropped support for IE 6-8, Safari 3.1-5
  • Improved suggestions, e.g. '@username'
  • Simplified button API
  • New markup, see example:

http://wysiwygjs.github.io/

Markup

<div class="wysiwyg">
  <textarea name="name" placeholder="Write a comment ..."></textarea>
</div>

<script>
wysiwyg( '.wysiwyg', {
  toolbar: 'demand',                        // 'top','bottom','demand',null
  buttons: [buttons],                       // buttons on toolbar
  selectionbuttons: [selectionbuttons],     // buttons on selection-toolbar
  suggester: suggester( open_suggestion ),  // handle suggestions
  interceptenter: interceptenter(),         // intercept 'enter'
  hijackmenu: false                         // toolbar instead context menu
});
</script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].