I clicked to edit a comment in review on the prime stackoverflow website.
Original text I had planned to edit was not in a code block (as below for presentation purposes) and was similar to:
$content = '<h1>About You</h1> <h4>First Name:</h4> <p>'. $fname .'</p> <h4>Last Name:</h4> <p>'. $lname.'</p> <h4>>Age:</h4> <p>'. $age.'</p>';
The text that appeared in the textarea for edit purposes (still not in a code block) was similar to:
$content = '<h1>About You</h1>
<h4>First Name:</h4>
<p>'. $fname .'</p>
<h4>Last Name:</h4>
<p>'. $lname.'</p>
<h4>>Age:</h4>
<p>'. $age.'</p>';
There is apparently an HTML escaping issue here, or this is likely normal because the escaped code was either used originally or converted to escaped html for presentation purposes. Either way, it felt inconsistent.