Aller au contenu

Apps

If you want a static website built from Markdown without a database, you’re looking at the world of Static Site Generators (SSGs).
These tools take Markdown files, process them through templates, and output plain HTML/CSS/JS — no database, no server-side logic.

Here are some good options:


1. Minimal & Markdown-First

  • Jekyll — Ruby-based, popular with GitHub Pages, supports Markdown out of the box.
  • Hugo — Written in Go, extremely fast, good for blogs and docs.
  • Eleventy (11ty) — JavaScript-based, simple to configure, flexible templating.

2. Documentation-Focused

  • MkDocs — Python-based, great for docs; themes like Material for MkDocs make it beautiful.
  • Docusaurus — React-based, nice for docs + blog combo.

3. Ultra-Simple

  • Zola — Single binary, Markdown + templates, very fast.
  • Pelican — Python-based, lightweight blog/doc generator.

4. Hosting Options

  • GitHub Pages — Free, integrates well with Jekyll.
  • Netlify / Vercel — Free tiers, easy continuous deployment.
  • Cloudflare Pages — Fast, privacy-friendly, free tier.

💡 Tip:
If you literally want just Markdown → HTML, even without templates, you can use Pandoc:

Bash
pandoc input.md -o output.html
But that’s more like “Markdown as HTML” than a full website generator.


If you tell me whether your goal is a blog, docs, or just a few pages, I can suggest a specific stack that’s basically install → write Markdown → deploy.