pell icon indicating copy to clipboard operation
pell copied to clipboard

📝 the simplest and smallest WYSIWYG text editor for web, with no dependencies

Results 71 pell issues
Sort by recently updated
recently updated
newest added

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...

feature

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 ![Peek 2022-07-14 14-08](https://user-images.githubusercontent.com/38032874/178912211-dbf6d187-26f9-4ba9-bc18-fded21b1446d.gif) 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: '&#128249;', title:...