Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.

Kalabasa/compose-html

Repository files navigation

compose-html

Yet another static site generator.

A simple example

Source files

<!-- card.html -->
<div class="card">
  <h1>{attrs.title}</h1>
  <slot />
</div>
<!-- page.html -->
<card title="Hello">
  <p>Hello, world!</p>
  <p>How's it going?</p>
</card>

Output file

<!-- out/page.html -->
<div class="card">
  <h1>Hello</h1>
  <p>Hello, world!</p>
  <p>How's it going?</p>
</div>

Status

This project is in very low maintenance mode. I'm looking to migrate to Astro anyway.

Syntax

Example Description
<div {...attrs} Inherit attributes from current component.
<script client> Run script in the client (normal script).
<script render> Run script at build time and render the return value or output in place.
<script static> Run script at build time (once per file).
return attrs.myVar In a render script, use attrs to access current component's attributes.
return children.length In a render script, use children to access current component's children for processing. (But use <slot> for rendering)
return html`<div>` In a render script, use the html tag to render HTML (processed further by compose-html).
return raw`<div>` In a render script, use the raw tag to render unprocessed HTML.
`<div ${spreadAttrs(map)}>` In a render script, use the spreadAttrs function to render multiple attributes.

About

Yet another static site generator

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors