Embedding code snippets in blog posts
Aug 7, 2026
Code snippets now render with syntax highlighting
You can embed source code in a post using a fenced code block. Specify the language for the best result:
tsfunction greet(name: string): string {
// a friendly hello
return `Hello, ${name}!`;
}Bash works too:
bashkubectl get svc japnam-web
curl -s https://japnam.tech/api/env-statusAnd inline code like npm run build is styled as well.
More from the blog
Learning Hermes Agent: my notes on the agent, skills, and the wiki
A quick tour of what Hermes Agent is, how skills work, and how the interlinked wiki helps me retain what I learn.
Aug 7, 2026
Deploying a Next.js App on Azure Container Apps with Terraform
A reproducible Terraform pipeline to deploy a Dockerized Next.js 16 app to Azure Container Apps with scale-to-zero and managed TLS.
Aug 7, 2026