summernote
Rich Editor
by Rapha Souza
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.7/summernote.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.7/summernote.js"></script>
<div class="summernote" sty>
<blockquote>
O Captain! My Captain! our fearful trip is done;
<br> The ship has weather'd every rack, the prize we sought is won;
<br> The port is near, the bells I hear, the people all exulting,
<br> While follow eyes the steady keel, the vessel grim and daring:
<br>
<br> But O heart! heart! heart!
<br> O the bleeding drops of red,
<br> Where on the deck my Captain lies,
<br> Fallen cold and dead.
<br>
</blockquote>
<em>Walt Whitman</em>
</div>
CSS
.summernote {
height: 300px;
}
JavaScript
$(document).ready(function() {
$('.summernote').summernote();
});