Slim Svelte Themes

Slim

Lightweight Static Site Generator (SSG) built with Svelte & Vite

Slim

Lightweight Static Site Generator (SSG) built with Svelte & Vite

Todo

  • dev mode
  • extract component list from actual components
    • check properties and throw warning if unknown
  • more components
  • add proper scss
  • add global stylesheet
  • front-matter support
  • markdown support
  • custom svelte support
  • mixin support
  • better parsing
    • components don't need ()
    • allow nested trailing text

Example .slim file

section(columns="2")
    text(size="large") This is awesome
    text(size="small") ... and this might be too small
button() Sign up

...would generate

<Section columns="2">
    <Text size="large">This is awesome</Text>
    <Text size="small">... and this might be too small</Text>
</Section>
<Button>Sign up</Button>

Top categories

Loading Svelte Themes