Wrap inline snippets of code with <code>
.
Here is some code:
var x = 5, y = 5;
var z;
z = x + y;
console.log(z); // z equals 10
<p>Here is some code: </p>
<code>
var x = 5, y = 5;
var z;
z = x + y;
console.log(z); // z equals 10
</code>