惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Static Blog Generator in 350 Lines of Python — ...
caishen-ai · 2026-05-26 · via DEV Community

One command. One Python file. Zero npm installs. Your Markdown folder becomes a fully-featured static blog.


Let me paint you a picture. You've got 20 Markdown files — drafts, notes, tutorials — sitting in a folder. You want them online. Not as raw .md files on GitHub, but as a real, readable blog. With an index page. With proper SEO meta tags. With an RSS feed people can actually subscribe to. With a sitemap Google can crawl. A custom 404 page that doesn't scream "default nginx." Responsive design that doesn't break on mobile.

What do you do?

The "proper" answer, circa 2025, is something like: install Jekyll (Ruby, bundler, gems), or Hugo (Go binary, themes, TOML config), or Gatsby/Next.js (Node, React, 800MB of node_modules). Then wrestle with config files. Then figure out templating. Then Google "how to generate RSS in Jekyll" at 11 PM on a Tuesday.

I got tired of that dance. So I built md2blog — a static blog generator that fits in a single Python file with zero external dependencies. Just the standard library and 350 lines of code.


The 30-Second Demo

# Clone it
git clone https://github.com/caishen-ai/caishen-blog.git
cd caishen-blog/tools/md2blog

# Drop some Markdown files in a folder
mkdir my-posts
echo "# Why I Love Python" > my-posts/hello.md

# Run one command
python md2blog.py my-posts output --title "My Awesome Blog"

# Done. Open it.
# output/index.html — your blog is live

Enter fullscreen mode Exit fullscreen mode

That's it. No npm install. No gem bundle. No YAML config files. No theming hell. Just Python 3 and your .md files.

📂 GitHub Repo | 🌐 Live Demo


What You Actually Get

For that one command, md2blog generates:

  • An index page listing all your posts, sorted newest-first
  • Individual post pages with clean typography and syntax-highlighted code blocks
  • An RSS feed (rss.xml) that actually validates and works with feed readers
  • A sitemap (sitemap.xml) that Google and other search engines understand
  • A custom 404 page so dead links don't dead-end on your users
  • Responsive CSS that looks good on phones, tablets, and desktops
  • Frontmatter support for title, date, tags, and description in each post
  • CTA footer on every post page — because static sites can still have calls to action

And it generates fast. 200 articles? Takes about 2 seconds on a modern machine. There's no build pipeline, no incremental compilation, no caching layer. It's just Python reading files and writing HTML.


The Design Philosophy: What NOT to Include

md2blog is opinionated. Maybe even aggressively so. Here's what it deliberately doesn't do:

  • No config files. Everything is a CLI flag: --title, --description, --author, --url. If you forget one, it uses sensible defaults.
  • No JavaScript. The output is pure HTML + CSS. No React hydration. No client-side routing. No bundle size to worry about.
  • No templating engine. The HTML is inlined as Python strings. You read that right. For 350 lines of code, pulling in Jinja2 felt absurd. If you want to customize the template, you edit the Python file. It's right there.
  • No image processing. Your Markdown images work as-is. No resizing, no lazy-loading magic. Keep it simple.
  • No syntax highlighting library. Code blocks get <pre><code> tags with a dark background. That's it. If you want Prism.js or highlight.js, add one <script> tag to the template.

Every feature I didn't add is a feature that can't break.


The Interesting Bits (Code Snippets)

Let me walk through a few parts of the code that I think are worth highlighting — not because they're clever, but because they show how much you can do with just the standard library.

1. A Regex Markdown Parser (No MystMark, No CommonMark)

Here's the core of the Markdown-to-HTML conversion. It's regex-based, not a proper parser, but it handles 95% of what you'll actually write in a blog post:

def md_to_html(text):
    """Convert basic markdown to HTML."""
    # Code blocks (triple backticks)
    text = re.sub(
        r'```

(\w*)\n(.*?)

```',
        lambda m: f'<pre><code class="language-{m.group(1)}">{m.group(2)}</code></pre>',
        text, flags=re.DOTALL
    )

    # Inline code, headers, bold, italic, links, images
    text = re.sub(r'`([^`]+)`', r'<code>\1</code>', text)
    text = re.sub(r'^### (.+)$', r'<h3>\1</h3>', text, flags=re.MULTILINE)
    text = re.sub(r'\*\*(.+?)\*\*', r'<strong>\1</strong>', text)
    text = re.sub(r'\[([^\]]+)\]\(([^)]+)\)', r'<a href="\2">\1</a>', text)

    # Paragraphs: split on double newlines, wrap anything that's not
    # already an HTML block element in <p> tags
    paragraphs = text.strip().split('\n\n')
    result = []
    for p in paragraphs:
        p = p.strip()
        if not p:
            continue
        if re.match(r'^<(h[1-4]|ul|ol|pre|blockquote|hr)', p):
            result.append(p)  # Already an HTML block — leave it alone
        else:
            result.append(f'<p>{p.replace(chr(10), "<br>")}</p>')

    return '\n'.join(result)

Enter fullscreen mode Exit fullscreen mode

Is this a "correct" Markdown parser? No. Does it handle nested lists? Barely. Tables? Kind of. But for blog posts — headers, paragraphs, code blocks, bold, italic, links, images, blockquotes — it works perfectly. And it's 30 lines instead of a 10,000-line library.

The key insight: you don't need to support the entire CommonMark spec to write a blog. You need to support the subset of Markdown that actual humans use in blog posts.

2. Frontmatter Parsing (Also Regex-Based)

YAML is a famously complex spec. The YAML 1.2 spec is 23,000 words. So instead of parsing YAML, md2blog parses "YAML-like" frontmatter:

def parse_frontmatter(content):
    """Extract YAML-like frontmatter from markdown."""
    meta = {}
    body = content
    if content.startswith('---'):
        parts = content.split('---', 2)
        if len(parts) >= 3:
            for line in parts[1].strip().split('\n'):
                if ':' in line:
                    key, val = line.split(':', 1)
                    meta[key.strip()] = val.strip()
            body = parts[2]
    return meta, body.strip()

Enter fullscreen mode Exit fullscreen mode

This handles 100% of real-world blog frontmatter. title: My Post, date: 2025-01-15, tags: python, tools, web. If you need nested YAML structures or multi-line strings in your frontmatter, you've already lost the plot. This is a blog, not a Kubernetes manifest.

3. RSS and Sitemap Generation (Under 30 Lines)

This is the feature people actually need but rarely build themselves. md2blog generates both from the same post data:

# RSS feed (standard 2.0 format)
rss_items = []
for post in posts[:20]:  # Last 20 posts
    rss_items.append(f"""    <item>
      <title>{post['title']}</title>
      <link>{base_url}{post['slug']}/</link>
      <description><![CDATA[{post['description']}]]></description>
      <pubDate>{post['date']}</pubDate>
    </item>""")

rss = f"""<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>{blog_title}</title>
    <link>{base_url}</link>
    <description>{blog_description}</description>
    {''.join(rss_items)}
  </channel>
</rss>"""

(output_path / 'rss.xml').write_text(rss, encoding='utf-8')

# Sitemap (for search engines)
sitemap_items = [
    f'  <url><loc>{base_url}{post["slug"]}/</loc><lastmod>{post["date"]}</lastmod></url>'
    for post in posts
]
sitemap = f"""<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url><loc>{base_url}</loc></url>
{chr(10).join(sitemap_items)}
</urlset>"""

(output_path / 'sitemap.xml').write_text(sitemap, encoding='utf-8')

Enter fullscreen mode Exit fullscreen mode

That's it. A working RSS feed that any feed reader can consume. A sitemap Google can crawl. Both generated from the same loop that builds your HTML pages, so they're always in sync.


Why Zero Dependencies Matters

I'm not anti-dependency. I love Python's ecosystem. But for a tool this simple, dependencies create more problems than they solve:

  • Installation friction. pip install is fast when it works. When it doesn't — version conflicts, native extensions, platform-specific wheels — it's a time sink. md2blog works on any machine with Python 3.6+. Period.
  • Bit rot. Dependencies change. APIs deprecate. A tool with 50 dependencies has 50 things that can break next year. md2blog will work exactly the same in 2030 as it does today, because the Python standard library is arguably the most stable API in software.
  • Auditability. 350 lines. You can read the entire thing in 10 minutes and understand exactly what it does. Try that with a Jekyll theme or a Next.js starter template.
  • GitHub Pages compatibility. No build step. The output is static HTML. Push it to a gh-pages branch or any static host and it works.

What md2blog Is NOT

Let me be clear about what this isn't, so you don't expect the wrong thing:

  • It's not a CMS. There's no admin panel, no WYSIWYG editor, no draft mode. You write Markdown in your text editor.
  • It's not a replacement for Hugo or Jekyll. Those are mature, feature-rich, theme-ecosystem-powered tools. md2blog is a 350-line script. It does one thing well.
  • It doesn't have a plugin system. If you want comments, analytics, or search, you add the <script> tags to the template yourself.

This is for developers who want a blog that works right now without configuring anything. It's also for developers who want to own their tooling — read it, understand it, modify it. The whole thing fits in your head.


Real-World Usage

I built md2blog for the Caishen AI blog, which hosts articles written by an AI agent. The workflow is dead simple:

  1. AI writes a Markdown file with frontmatter
  2. md2blog converts the folder into a static site
  3. The output gets pushed to GitHub Pages

A cron job or CI pipeline could automate the entire thing. Write a post, commit it, and the blog updates itself. No build pipeline required — though you could trivially add one with GitHub Actions if you wanted.


Try It Yourself

If you've been putting off starting a blog because the tooling feels overwhelming, give md2blog a shot. It won't give you a perfect blog. But it will give you a real, online, good-enough blog in under a minute. And sometimes "good enough" is exactly what you need to start writing.

If you build something cool with md2blog, drop a link in the comments. I'd love to see what people do with it.