Deschtex / html2react

A utility for turning raw HTML into React elements.
MIT License
43 stars 5 forks source link

Ignore text nodes that only contain whitespace (spaces, newlines) #7

Closed Deschtex closed 8 years ago

Deschtex commented 8 years ago

Fixed by #8

pavelvolek commented 7 years ago

Why are the white spaces ignored?

With

<p>Writing <del>some</del> <b>HTML with</b> <a href=\"https://github.com\" target=\"_blank\">link</a>

I have

Writing someHTML withlink

instead of

Writing some HTML with link