I am fetching data from api(created in php),There is description field (data saved by ckeditor)
In my db/api data is saving in following format
<p><strong>Hello admin <em>Lorem Ipsum dummy text</em></strong></p>
And i am using "ReactHtmlParser" for display blog content in web page
{ReactHtmlParser(post.description)}
But its showing me data in following format,how can i solve this ?
<p><strong>Hello admin <em>Lorem Ipsum dummy text</em></strong></p>
My expected output is " Hello admin Lorem Ipsum dummy text "
Hello admin Lorem Ipsum dummy text
" in my web but whenever i use this code into "dangerouslySetInnerHTML" then its working fine – amit Jun 29 '22 at 08:25