mdorigin
mdorigin is a markdown-first publishing engine for humans and agents.
It keeps markdown directly addressable, renders extensionless HTML from the same files, and can publish the same content tree to local preview or Cloudflare Workers.
If you want to try it quickly, start with Getting Started, then move to Configuration, Extensions, and Cloudflare Deployment.
Core Principle
mdorigin is not a template system. Its core is the routing model and the normalized content model built from a markdown tree.
That means:
mdoriginowns routing and content semantics- default rendering is built in
- advanced users should be able to replace page rendering with code
- extensions should not need to replace the request pipeline itself
In other words, mdorigin is a programmable publishing core. A future extension system should let users build their own page layouts, including catalog-style pages, on top of the same routing and content kernel.
What it does
- filesystem routes map directly to published routes
.mdstays accessible as raw source.htmland extensionless routes render the same markdown for humans- relative assets stay next to content
- the same core works for local Node preview and Cloudflare Workers
- optional search and
/api/searchare powered byindexbind indexbinddocs: https://indexbind.jolestar.workers.dev
Project Note
Why mdorigin exists explains the project direction in one page and gives the shortest rationale for the markdown-first model.
The top navigation and section indexes cover the rest of the documentation.