Calendar
Update your profile details
My Notes
Update your profile details
  • It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
  • Contrary to popular belief, Lorem Ipsum is not simply random text.
My Task List
Update your profile details
Summernote
More details. https://summernote.org/
Hi there,

The toolbar can be customized and it also supports various callbacks such as oninit, onfocus, onpaste and many more.

Note: The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English



Thank you!

Summer Note

Summernote documents

Summernote is a JavaScript library that helps you create WYSIWYG editors online.

<!-- css file -->
<link rel="stylesheet" href="../node_modules/bs4-summernote/dist/summernote.css">
<link rel="stylesheet" href="../node_modules/bs4-summernote/dist/summernote-bs4.css">

<!-- main html div -->
<div class="summernote">
....           
</div>

<!-- plugin js file -->
<script src="../node_modules/bs4-summernote/dist/summernote.min.js"></script>
<script src="../node_modules/bs4-summernote/dist/summernote-bs4.min.js"></script>

<!-- page js file -->
<script>
$('.summernote').summernote({
placeholder: 'Hello Bootstrap 4',
tabsize: 1,
height: 300
});
</script>