After RichTextState.setHtml, if followed by , the value returned by RichTextState.getHtml will have an additional appended to the end.
val state = RichTextState() state.setHtml("<p>ABC</p><br>") state.getHtml() // return <p>ABC</p><br><br>
set "<p>ABC</p><br>", but return <p>ABC</p><br><br>
This will cause an extra line.
1.0.0-rc05 is work fine, rc06 and rc07 both have this issure
After RichTextState.setHtml, if followed by
, the value returned by RichTextState.getHtml will have an additional
appended to the end.
val state = RichTextState() state.setHtml("<p>ABC</p><br>") state.getHtml() // return <p>ABC</p><br><br>
set"<p>ABC</p><br>"
, but return<p>ABC</p><br><br>
This will cause an extra line.1.0.0-rc05 is work fine, rc06 and rc07 both have this issure