britzl / defold-richtext

Defold-RichText is a system to create styled text based on an HTML inspired markup language
MIT License
75 stars 12 forks source link

Bold and linebreak compatibility #26

Closed ghroot closed 6 years ago

ghroot commented 6 years ago

A linebreak seem to disappear when using the b tag.

Passing in this to richtext.create() gives correct results (there is one empty line between the lines): Line 1\n\nLine 2

but this generates two lines without the empty line in between: <b>Line 1</b>\n\nLine 2