Skip to content

Installation

CodeCage is a Web Component to generate a CodePen like code viewing experience.

Install

Terminal window
pnpm add code-cage

Usage

<code-cage use-slots>
<span slot="html">{{my_html_snippet}}</span>
<span slot="css">{{my_css_snippet}}</span>
<span slot="js">{{my_js_snippet}}</span>
</code-cage>
<!-- Or using attributes -->
<code-cage
html="{{my_html_snippet}}"
css="{{my_css_snippet}}"
js="{{my_js_snippet}}"
></code-cage>

Make sure you include the script somewhere in your site.

Example

<div class='test'>Testing</div>
.test {
color: limegreen;
}
(function() { console.log('testing') })()

To do

  • As an Astro Component (Though it should work just fine as a web component)
  • Support for markdown codeblocks [Help Wanted]
  • Syntax Highlighting (Check out this css tricks article)
  • Make styles more configurable (::part, --cc-prop-name) [Help Wanted]
  • Take advantage of DSD somehow (goes for styles too)