Log in

View Full Version : Is Tiny MCE still the best? and looking for a good Login Script



kuau
03-18-2021, 05:07 PM
Years ago Tiny MCE was considered the best WYSIWYG editor but it is anything but tiny. Does anyone know what is the best WYSIWYG editor these days? It is so that people submitting events to a free community events calendar can use html to format their posting.

Also, I'm considering adding a login script to the calendar so that events posters can come back and edit their events themselves. Does anyone know of a good open source script that registers users by sending an email verification on the signup and for lost password? I've been out of the business for a while so am not really up on the latest greatest. Any feedback would be greatly appreciated. Thanks.

reserved1
04-12-2021, 03:09 PM
I think you should take a look at CKEditor

kuau
04-13-2021, 12:39 AM
I tried the demo and liked it. I then downloaded Ckeditor5, followed the installation instructions, and it didn't work. Only bold and italic and heading worked. Insert images did NOT work. Even increase indent did not work.

I inserted this line in the <head> section...
<script src="/ckeditor5/ckeditor.js"></script>

Then I inserted the following in the html where I wanted the editor...


<div id="editor"><textarea rows="14" name="description" cols="75" class="description" align="right" ></textarea></div>


<script>
ClassicEditor
.create( document.querySelector( '#editor' ) )
.catch( error => {
console.error( error );
} );
</script>

What did I do wrong? It doesn't work. Thanks in advance for your feedback.