Pell – A simple and small rich-text editor for the web
101–106 of 106 posts
Re: Pell – A simple and small rich-text editor for the web
#102Earlier quoted context omitted.
Good point -- I had some CSS attached to H1 nodes that accidentally also matched H1s in the editor. Should be fixed now.
Also note, some of the tooltips appear as "undefined" and there's no way to advance the cursor past a horizontal rule at the end of the document.
There's a solution in the works for the latter problem.
Re: Pell – A simple and small rich-text editor for the web
#103Nonsense, I've written a much smaller one: `function tinyEditor(element) { element.contentEditable = true }` That, plus a few crude buttons, is all this does. As several other comments point out, there's good reasons why real WYSIWYG packages are bigger—the user experience of working with a plain contentEditable element is still terrible, the output HTML still a complete mess. If you don't care much about that, you d…
Prosemirror's logo reminds me of : https://dribbble.com/shots/2054672-Neg-Owl-4
Re: Pell – A simple and small rich-text editor for the web
#104Earlier quoted context omitted.
And those evergreen browsers are still doing terrible things when it comes to contentEditable, and they don't really have a lot of choice, because it's an underspecified poorly conceptualized idea that really doesn't leave them much room to things right. There's some work happening on the W3C editing taskforce to improve the concepts involved, but that's also moving at a glacial pace, and having to struggle with brow…
Again, you are getting offended. Not once did I suggest editor implementors are clueless. They're likely some of the best and sharpest developers out there. Please, as I mentioned earlier, take this project with a grain of salt. By "fallen behind" I meant still making the assumption that many users are still using outdated browsers. This is not the case anymore, especially in the last year. And because of this fact,…
Re: Pell – A simple and small rich-text editor for the web
#105Earlier quoted context omitted.
Also note, some of the tooltips appear as "undefined" and there's no way to advance the cursor past a horizontal rule at the end of the document.
What do you mean by tooltips? There's a solution in the works for the latter problem.