Case converter plugin for the Summernote WYSIWYG editor.
Adds a button to the Toolbar with a dropdown in the Toolbar that allows case converting in any text in the editor.
Functions of this plugin:
- Case convert between upper, lower, sentence and title case.
Include the following code after including Summernote:
<script src="summernote-case-converter.js"></script>
Currently available in English and Spanish!
Finally, customize the Summernote Toolbar.
$(document).ready(function() {
$('#summernote').summernote({
toolbar:[
['custom',['caseConverter']], // The button
['style',['style']],
['font',['bold','italic','underline','clear']],
['fontname',['fontname']],
['color',['color']],
['para',['ul','ol','paragraph']],
['height',['height']],
['table',['table']],
['insert',['media','link','hr']],
['view',['fullscreen','codeview']],
['help',['help']]
]
});
});