Change the New-line Mode from P to Br tag
The following example demonstrates how to change the default new-line behavior from inserting <p>
tag to <br>
tag.
<textarea id="editor"></textarea>
<script>
var defaultTools = kendo.ui.Editor.defaultTools;
defaultTools["insertLineBreak"].options.shift = false;
delete defaultTools["insertParagraph"].options;
$("#editor").kendoEditor();
</script>