I would bind a function to the keyup event to delete and change to
using regEx. So even if it creates strange markup, it will be fixed.
Using jQuery:
$('.myEditable').keyup(function(){
var sanitazed = $(this).text().replace(//g, '').replace(/<\/div[^<]*?>/g, '
');
$(this).text(sanitazed);
});