704 B
704 B
title = "Quickstart"
Quickstart
Creating a site
kewt --new mysite
cd mysite
This creates a directory with a site.conf, template.html, and index.md.
Writing content
Edit index.md (or any .md file) and just write markdown as usual. Files in subdirectories are added to the navigation automatically.
Building
kewt src out # Replace with the directories you want
Reads from src and writes static HTML to out.
Previewing
kewt --serve
Builds the site and starts a local HTTP server. Use --watch with --serve to rebuild automatically on file changes.