JSFiddle - React, Tailwind, and code Playground

by inser

HTML

<script src="http://www.tinymce.com/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<form method="post" action="somepage">        
    <div id="test">opa</div>
</form>

JavaScript

var options = {
        // General options
        mode : "exact",
    elements : 'test'
        theme : "advanced",
        plugins: "autoresize,autolink,lists,pagebreak,style,table,advhr,advimage,advlink,emotions,inlinepopups,insertdatetime,preview,media,searchreplace,contextmenu,paste,"
                        + "directionality,fullscreen,visualchars,nonbreaking,xhtmlxtras,advlist,"
                        + "imagemanager,customtomplugin,template,paste",

                    // Plugin options
                    dialog_type: "modal",
                    plugin_insertdate_dateFormat: "%m/%d/%Y",
                    fullscreen_new_window: false,
                    fullscreen_settings: { theme_advanced_path_location: "top" },
                    theme_advanced_path: false,

                    // Theme options
                    theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect",
                    theme_advanced_buttons2: "fullscreen,|,code,|,preview,|,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo",
                    theme_advanced_buttons3: "forecolor,backcolor,|,sub,sup,|,insertdate,charmap,emotions,media,advhr,|,ltr,rtl,|,link,unlink,anchor,image,cleanup",
                    theme_advanced_buttons4: "tablecontrols,|,hr,removeformat,visualaid",
                    theme_advanced_buttons5: "styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,|,insertimage,|,variables<%= CmsControlsButtons %>",
                    theme_advanced_toolbar_location: "external",
                    theme_advanced_toolbar_align: "left",
                    theme_advanced_statusbar_location: "none",
                    theme_advanced_resizing: false,

                    // Skin options
                    skin: "o2k7",
                    skin_variant: "silver",

                   ...