JSFiddle - React, Tailwind, and code Playground
by DiegoTc
HTML
<script src="http://mindmup.github.io/bootstrap-wysiwyg/external/jquery.hotkeys.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script src="http://mindmup.github.io/bootstrap-wysiwyg/bootstrap-wysiwyg.js"></script>
<div id="editor">Hello World</div>
CSS
#editor {
max-height:300px;
height:300px;
}
JavaScript
$(document).ready(function() {
$('#editor').wysiwyg();
});