What is the output of wysiwyg plugins like Summernote and Tinymce?

Asked

Viewed 35 times

0

Someone would know me what is the output of this editors type Summernote, Tinymce, Froala, Ckeditor4. I looked at the documentation of all these and did not understand for example how to save the content in a database for example, I do not know what generates, if it is an Html, Json, text?

<h1>TinyMCE Quick Start Guide</h1>
<form method="post">
    <textarea id="mytextarea">Hello, World!</textarea>
</form> 

<script>
    tinymce.init({
      selector: '#mytextarea'
    });
</script>
  • It is plain text. You can save as longtext in a database.

  • With Cheditor you can carry both plain text without HTML tags and/or text with formatting. The documentation is quite rich. https://docs.ckeditor.com/ckeditor4/latest/guide/index.html

  • Thanks for your help, guys.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.