imperavi/vue-redactor

Source editing is broken due to escaping and <p> wrapping

Closed this issue · 1 comments

https://imperavi.com/redactor/examples/initialization/vue-component/
Use either one of the editors and enable the HTML editing mode.

Enter a < and it will add the following:
<p>&lt;</p>

Enter any other text and it will be wrapped in a paragraph after a short delay. Typing abcd slowly will show as:
<p>a</p>
<p>b</p>
<p>c</p>
<p>d</p>

Is this going to get fixed?