How publishing to this blog works
This post exists mostly to prove the pipeline works. Here’s the short version of what happens when we hit Publish in Yacho.
The flow
- We draft a blog deliverable inside Yacho.
- Clicking Publish sends it through the Yacho connector.
- The connector commits a markdown file to this blog’s repository.
- The site rebuilds and the new page is live — usually within a minute or two.
Why static
Static pages load fast and rank well, which matters when the whole point of a post is to be found. Code samples render cleanly too:
const post = { title: 'Hello', published: true };
console.log(`Shipping: ${post.title}`);
That’s it. No CMS to babysit, no servers to keep warm — just fast pages.