coignard / weblog

A stupidly simple plain text-based blog engine. No HTML, CSS, or JS included.
https://renecoignard.com
MIT License
45 stars 4 forks source link

Update config.example.yml #13

Closed coignard closed 5 months ago

coignard commented 5 months ago
# Configuration Template for Weblog
# Fill in your values and rename this file to config.yml

# Author's full name
author_name: "John Doe"

# Description about the author or the blog
about_text: "I like trains."

# Full domain URL without trailing slash
domain: "https://example.com"

# Line width for text formatting
line_width: 72

# Prefix length for paragraph formatting
prefix_length: 3

# Directory where blog files are stored
weblog_dir: "/path/to/your/weblog/directory"

# Author email for footer copyright
author_email: "example@example.com"