Summernote
Summernote Editor
Huro ships with Summernote Editor, a nice and easily customizable jQuery rich text editor here. If you need a vanilla js editor, please consider looking at our other integrated editor, sun editor.
//JS CODE
$('#summernote').summernote({
placeholder: 'Hello stand alone ui',
tabsize: 2,
height: 250, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true,
toolbar: [
['style', ['style']],
['font', ['bold', 'underline', 'clear']],
['para', ['ul', 'ol', 'paragraph']],
['table', ['table']],
['insert', ['link', 'picture', 'video']],
['view', ['codeview', 'help']]
]
});
//MARKUP
<div id="summernote"></div>