Skip to content

Version 0.8.0

Pre-release
Pre-release

Choose a tag to compare

@Gigabyte5671 Gigabyte5671 released this 28 Sep 03:47
· 24 commits to main since this release

Static Script

CSS-to-HTML can now be used as a static script.
To do so, download css-to-html.js from the assets section below. Then include the script in your site:

<script src="path/to/css-to-html.js"></script>

<script>
const css = 'p { color: purple; }';

cssToHtml(css).then(html => {
    console.log(html);
});
</script>

Make sure to check the releases page frequently for updates.