JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <title>Fixed Size Demo - CLEditor WYSIWYG HTML Editor</title>
    <meta name="description" content="CLEditor is an open source jQuery plugin which provides a lightweight, full featured, cross browser, extensible, WYSIWYG HTML editor that can be easily added into any web site." />
    <meta name="keywords" content="jquery plugin, wysiwyg, html, editor, cross browser, lightweight, open source" />
    <link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico">
    <link rel="stylesheet" type="text/css" href="http://premiumsoftware.net/cleditor/jquery.cleditor.css" />
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://premiumsoftware.net/cleditor/jquery.cleditor.min.js"></script>
  </head>
  <body>
    <textarea id="input" name="input">This is the fixed size demo.</textarea>
  </body>
</html>

JavaScript

$(document).ready(function() {
    $("#input").cleditor({
        controls : ""
    })[0].focus();
    $('div.cleditorMain > div.cleditorToolbar').hide();
});