serializationObject
Allows setting of serialization options.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
serialization: {
custom: function(html) {
return html.replace(/(<\/?)strong(\s?)/, "$1b$2");
}
}
});
</script>
In this article