Hi @jsamr ,
I faced with the same issue on "react-native-render-html": "^6.3.4" .
every image displays on the next line.
I tried to use this snippet but images doesn't display at all.
Please advice me what should I add to fix this behaviour. Thanks.
expected result: images and text alternate in the same line.
actual result:
actual code:
<RenderHTML
enableExperimentalMarginCollapsing
enableExperimentalGhostLinesPrevention
contentWidth={width}
source={{
html: '<p style="text-align: justify;">Включение проблескового маячка оранжевого цвета на транспортных средствах с опознавательным знаком <img alt="" title="" src="https://dummyimage.com/25x25" height="25" /> «Дети», на механических транспортных средствах дорожно-эксплуатационной службы во время выполнения работы на дороге, на крупногабаритных и тяжеловесных транспортных средствах, на сельскохозяйственной технике, ширина которой превышает 2,6 м, не предоставляет им преимущества в движении, а служит для привлечения внимания и предупреждения об опасности. При этом водителям транспортных средств дорожно-эксплуатационной службы во время выполнения работы на дороге разрешается отступать от требований дорожных знаков (кроме знаков приоритета и знаков <a title="sign_3.21" href="/ru/znaky/3/3.21/">3.21</a> <img alt="3.21 "Въезд запрещен"" title="sign_3_21" src="https://dummyimage.com/25x25" height="25" />, <a title="sign_3.22" href="/ru/znaky/3/3.22/">3.22</a> <img alt="3.22 "Поворот направо запрещен"" title="sign_3_22" src="https://dummyimage.com/25x25" height="25" />, <a title="sign_3.23" href="/ru/znaky/3/3.23/">3.23</a> <img alt="3.23 "Поворот налево запрещен"" title="sign_3_23" src="https://dummyimage.com/25x25" height="25" />)</p>',
}}
renderersProps={{
a: {
onPress: (_, href) => {
console.log(href);
},
},
}}
tagsStyles={{
img: {
height: 26,
alignItems: 'flex-start',
alignSelf: 'auto',
justifyContent: 'flex-start',
},
}}
/>
Hi @jsamr , I faced with the same issue on
"react-native-render-html": "^6.3.4"
. every image displays on the next line. I tried to use this snippet but images doesn't display at all.Please advice me what should I add to fix this behaviour. Thanks.
expected result: images and text alternate in the same line. actual result:
actual code:
Originally posted by @wandersage in https://github.com/meliorence/react-native-render-html/issues/371#issuecomment-1298606116