There’s a lot of pre-production going on here on the upcoming CSS course and part of that is answering “how do we make demos easier to maintain in the long term.?”
I think David might have the answer for us. Take a look at this code sample:
<script type="module" src="code-pen.js"></script>
<code-pen>
<pre>
<code><p>Hello world</p></code>
</pre>
<pre>
<code>:root { color: hotpink; }</code>
</pre>
<pre>
<code>document.querySelector("p").style.backgroundColor = "orange";</code>
</pre>
</code-pen>
Now, this site is built with Astro so we’ll probably wrap this sorta thing in an Astro component for our existing MDX system, but still, it’s a really handy approach. Cheers, Dave!