jpuri / draftjs-to-html

Library for converting Draftjs editor content state to HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not all inline styles are getting converted

bhaskarrao123 opened this issue · comments

Hi,

I tried to paste below html

<div style="color: red;border: 1px solid green">Sample text</div>

But it stripped away border color and allowed only color. Is there anyway we can edit full html without any restrictions?

<div style="color: red;">Sample text</div>