Decision Table
Good Faith Declaration
Description
I have noticed a strange behaviour that probably originates from the library trying to parse special characters in html (&, &lquote, ....), but failing to do so.
// Fails
<RenderHTML source={{ html: "&" }} />
// Works
<RenderHTML source={{ html: "&" }} />
// Fails
<RenderHTML source={{ html: "& " }} />
// Works
<RenderHTML source={{ html: " &" }} />
```
### React Native Information
```sh
don't know what to provide here
```
### RNRH Version
6.3.4
### Tested Platforms
- [ ] Android
- [x] iOS
- [ ] Web
- [ ] MacOS
- [ ] Windows
### Reproduction Platforms
- [ ] Android
- [x] iOS
- [ ] Web
- [ ] MacOS
- [ ] Windows
### Minimal, Reproducible Example
// Fails
<RenderHTML source={{ html: "&" }} />
// Works
<RenderHTML source={{ html: "&" }} />
// Fails
<RenderHTML source={{ html: "& " }} />
// Works
<RenderHTML source={{ html: " &" }} />
### Additional Notes
_No response_
Decision Table
<yyy>is not rendered”Good Faith Declaration
Description
I have noticed a strange behaviour that probably originates from the library trying to parse special characters in html (&, &lquote, ....), but failing to do so.
// Fails
<RenderHTML source={{ html: "&" }} />
// Works
<RenderHTML source={{ html: "&" }} />
// Fails
<RenderHTML source={{ html: "& " }} />
// Works
<RenderHTML source={{ html: " &" }} />