How to prevent editing child element by medium-editor whereas parent element is editable. Example:
<div class="editable">
This text should be editable<span class="no-editable"> This text should not be editable.</span>
</div>
<script>
var editor = new MediumEditor('.editable');
</script>