Hello,
I am trying to have non-editable block inside contenteditable=true but it seem that this feature is not working in 4.1 CKEditor. I have following code:
<div contenteditable="true">
<h3>Fusce vitae porttitor</h3>
<p contenteditable="false">This paragraph is read-only.</p>
<p>Lorem ipsum dolor sit amet dolor. Duis blandit vestibulum faucibus a, tortor.</p>
</div>
But after load editor remove contenteditable="false" attribute from paragraph and make it editable.
Any solution?