diff --git a/docs/kiln.1.scd b/docs/kiln.1.scd index 423e6dc..63a5686 100644 --- a/docs/kiln.1.scd +++ b/docs/kiln.1.scd @@ -337,19 +337,21 @@ command to convert Gemini text to HTML. template = ".gmi" postprocess = "gmnitohtml" static_dir = "static" - output_dir = "public.html" + output_dir = "public_html" ``` -The following configuration generates an HTML site from Markdown files in the -content directory and HTML templates in the templates directory. This -configuration makes use of the *markdown*(1) comand to convert Markdown to HTML. +The following configuration generates an HTML site from Markdown and Gemini text +files in the content directory and HTML templates in the templates directory. +This configuration makes use of the *mdtohtml*(1) command to convert Markdown to +HTML, and the *gmnitohtml*(1) command to convert Gemini text to HTML. ``` [[tasks]] - input_ext = [".md"] - output_ext = ".html" - template_ext = ".html" - preprocess.md = "markdown" + input = [".md", ".gmi"] + output = ".html" + template = ".html" + preprocess.md = "mdtohtml" + preprocess.gmi = "gmnitohtml" static_dir = "static" output_dir = "public" ```