i just want to remove "" so insted of <H2>When Does Thor: Love And Thunder Realase &Nbsp;In Disney Plus?&Nbsp;</H2>
it will be displayed as When Does Thor: Love And Thunder Realase In Disney Plus?
i have edited my question now u understand what i am looking for
{posts.map((itm, k) => {
return (
<>
<div key={itm._id} className="Question-one">
<h2> {itm.Name}</h2>
<div>
{itm.htmldata}
</div>
</div>
<div className="username">
<span className="username2">--{itm.username}</span>
</div>
</>
);
})}
</>