pell
pell copied to clipboard
📝 the simplest and smallest WYSIWYG text editor for web, with no dependencies
Can be an idea add a **destroy** method. I need this method because I use this library in a SPA website. The method should remove the events and remove the...
Currently I am using quilljs. Not only It's more heavy than pell but also it has critical problem that scrolling top while pasting long text So I am considering to...
Hi, Third party input method have a initial letter malposition problem. I transcibe a gif, just like this  I want to input 'hao', but actually input the...
Add an eraser button to clear all format Ref #145
Hi, It would be great if a user is able to insert arbitrary HTML into the editor. I can get this functionality by initializing pell as follows: ``` const editor...
when you type Chinese characters in the first line.eg "我” then the pell will turn the character to "w" the reason is the code in this line 124 ``` if...
Allow user specify if wrap text nodes into `formatBlock`. Fix for problem with duplication of text in Firefox on Android.
Adds a new default options "placeholder". Adding a placeholder will add a data-placeholder attribute on the contenteditable area. Using css's `:empty` show and hide the "placeholder" text on the content...
Hi, There's way to obtain div id on onChange event ? i use this thing `for(var i = 0; i < elements.length; i++){ this.pellConfig.element = elements[i]; this.pellConfig.onChange = function(e){ console.log(e);...
Hey, new user here. Loving pell so far! I added some custom actions for video and others like this: ```js actions: [ ... 'image', { name: 'video', icon: '📹', title:...