JSFiddle - React, Tailwind, and code Playground
HTML
<div class="pattern-details">
<code>
<h2>This is a heading two code</h2>
</code>
</div>
JavaScript
$('code').html(function (i, code) {
return code
.replace(/</g, '<')
.replace(/>/g, '>')
});