How can I get a html format text through json, like below format?
<div class="header" id="header_1"> <p>All glitters are not gold</p> </div>
Because json doesn't support " character inside the object value.
You can escape quotes in JSON with \"
\"
Check this answer for a list of all JSON escape characters.