3.1 KiB
3.1 KiB
Usage
kewt --help
kewt --version
kewt --new [title]
kewt --post [title]
kewt --generate-template [path]
kewt --update [dir]
kewt --from <src> --to <out>
kewt [src] [out]
--new [title]creates a new site directory with a defaultsite.conf,template.html, andindex.md.--post [title]creates a new markdown file in the configuredposts_dirwith the current date/time as the filename and default frontmatter.--generate-template [path]writes the defaulttemplate.htmlto the given path (defaults totemplate.htmlin the current directory).--update [dir]adds any missing keys tosite.confand checkstemplate.htmlagainst the latest default.
site.conf
title = "kewt"
style = "kewt"
dir_indexes = true
single_file_index = true
flatten = false
order = ""
home_name = "Home"
show_home_in_nav = true
nav_links = ""
nav_extra = ""
footer = "made with <a href=\"https://kewt.krzak.org\">kewt</a>"
logo = ""
display_logo = false
display_title = true
logo_as_favicon = true
favicon = ""
generate_page_title = true
error_page = "not_found.html"
versioning = false
enable_header_links = true
base_url = ""
generate_feed = false
feed_file = "rss.xml"
posts_dir = ""
custom_admonitions = ""
title- site titlestyle- style file name from./styles(without.css)dir_indexes- generate directory index pages when missingindex.mdsingle_file_index- if a directory has one markdown file and noindex.md, use that file asindex.htmlflatten- flatten sidebar directory levelsorder- comma separated file/directory name list to order the sidebar (alphabetical by default)home_name- text for the home link in navigation (default: "Home")show_home_in_nav- show home link in navigation (default: true)nav_links- comma separated extra nav links, as bare URLs or Markdown links like[Label](https://example.com)nav_extra- raw HTML appended inside the<nav>after the generated link listfooter- footer html/text shown at the bottom of pageslogo- logo image path (used in header if enabled)display_logo- show logo in headerdisplay_title- show title text in headerlogo_as_favicon- uselogoas faviconfavicon- explicit favicon path (used whenlogo_as_faviconis false or no logo is set)generate_page_title- automatically generate title text from the first markdown heading or filename (default: true)error_page- filename for the generated 404 error page (default: "not_found.html", empty to disable)versioning- append a version query parameter (?v=timestamp) to css asset urls to bypass cache (default: false)base_url- absolute URL of the site, used for sitemap and RSS feed generationgenerate_feed- enable RSS feed generation (requiresbase_url)feed_file- filename for the generated RSS feed (default: "rss.xml")posts_dir- directory name containing posts (e.g., "posts"). Enables reverse-chronological sorting, title headings in indexes, and automatic backlinks.enable_header_links- turns markdown section headings into clickable anchor links (default: true)custom_admonitions- comma separated list of custom admonitions