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.
– Lucas Caires
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
– Netinho Santos
Thanks for your help, guys.
– LeAndrade