But how did I get those HTML entities themselves to display without converting into characters, you ask?
I used the & entity to create the initial ampersand character! So that & in the previous sentence was coded as &. And & displays as & etc.
no subject
< gives you a <
> gives you a >
& gives you a &
So the HTML looks like this:
<ul>
<li>Cobb</li>
<li>Arthur</li>
<li>Ariadne</li>
<li>Eames</li>
</ul>
And displays like this:
<ul>
<li>Cobb</li>
<li>Arthur</li>
<li>Ariadne</li>
<li>Eames</li>
</ul>
But how did I get those HTML entities themselves to display without converting into characters, you ask?
I used the & entity to create the initial ampersand character! So that & in the previous sentence was coded as &amp;. And &amp;amp; displays as &amp; etc.