**Describe the bug** It seems that backquotes are automatically escaped in HTML cells ⁉️ I don't get the rationale behind this behavior… **To Reproduce** 1. Insert a new HTML cell as follows: <code>\\\`\\\`</code> ~~~javascript <oops>``</oops> ~~~ 2. Insert another cell as follows: <code>\`\`</code> ~~~javascript html`<oops>\`\`` ~~~ 3. Compare the output… 4. It gets even worse when querying the text content of the above nodes: <code>Array(2) [ 0: "\\\\\`\\\\\`" 1: "``" ]</code> ~~~javascript Array.from(document.querySelectorAll("oops")).map((elt) => elt.textContent) ~~~ **Expected behavior** I expect the output to be the same whether I use a JavaScript or HTML cell, e.g. <code>\`\`</code>