Hi,
How do I add TinyMCE editor into my website. Do I still need to sign up with tinyMCE and use below format
<script src="https://cdn.tiny.cloud/1/**no-api-key**/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>
with my own api key and then put following script:
<script>
tinymce.init({
selector: '#mytextarea'
});
</script>
Or, is there any predefined in-built theme "class", which will avoid me to use above steps resulting in duplicating resource load for this plugin, which is then similar to integrating this plugin myself on any other templates?
