TL;DR
Iβve built a tiny Markdown-based blog management CLI: π GitHub - tsugumi-sys/mejiro
mejiro-cli is a tiny blog management CLI tool. Itβs inspired by the mejiro, a small bird in Japan. Use it to manage a personal blog: create posts and compile Markdown into static HTML.
This blog itself is built with mejiro.
Motivation
I needed a simple blog app. I didnβt want complex configurations, just a tool to write blog posts in Markdown and manage them easily. Thatβs why I built mejiro-cli.
Basic usage
You create and manage posts using the CLI. Metadata is directly in the Markdown files, so you can edit everything in one place. When youβre ready, compile your posts into static HTML thatβs easy to deploy anywhere.
Initialize your blog:
mejiro-cli init
Create a new post:
mejiro-cli new
Compile posts to HTML:
mejiro-cli compile
Then, all assets are stored in ./public folder. You can host everywhere.
Example:
public/
βββ index.html
βββ images/
βββ posts/
β βββ post1.html
βββ wasm-pkg-for-search/
βββ style.css
βββ icon.png