margox / braft-editor

美观易用的React富文本编辑器,基于draft-js开发
MIT License
4.6k stars 594 forks source link

Striping out inline styles #909

Open debotos opened 3 years ago

debotos commented 3 years ago

I passed this as an initial value -

Kind regards,
<div style="font-size:8pt;">
Visit <a href="https://www.some-live.com" style="color: #161c2d; font-weight: 300; font-size: inherit; border-style: none; text-decoration: none !important; line-height: 21px;" border="0">www.some-live.com</a> for more information.
</div>

Its output -

<p>Kind regards, </p><p>Visit <a href="https://www.some-live.com" border="0">www.some-live.com</a> for more information. </p>

So it loses the inline stylings inside the "a" element.

Any solution?

Thanks.