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...
Code:
<script src="/ckeditor5/ckeditor.js"></script>
Then I inserted the following in the html where I wanted the editor...
Code:
<div id="editor"><textarea rows="14" name="description" cols="75" class="description" align="right" ></textarea></div>
Code:
<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.
Bookmarks