Skip to main content

Zero-config static site builder for markdown blogs

Project description

mdwiki

mdwiki is a small static site builder that turns a directory tree of markdown files into a blog-ready HTML site.

It keeps the authoring model simple:

  • directories become URL segments
  • each markdown file becomes one HTML page
  • local images referenced from markdown are copied into the output site
  • index pages and tag pages are generated automatically

Install

Use uv:

uv tool install mdwiki

Or install from source:

uv sync
uv run mdwiki_exec ./example-posts ./dist

CLI

Build a site from a markdown source tree:

mdwiki_exec <source_dir> <dist_dir>

Show the built-in help or version:

mdwiki_exec --help
mdwiki_exec --version

Example:

mdwiki_exec ./post ./dist

source_dir usually contains:

  • markdown posts under dated folders such as post/2024/04/03/demo.md
  • optional local images next to each markdown file
  • optional CNAME

GitHub Pages workflow

The recommended deployment model is:

  1. Keep markdown source in your repository.
  2. Build the site in GitHub Actions.
  3. Upload the generated dist/ directory as a Pages artifact.
  4. Deploy with actions/deploy-pages.

Example workflow:

name: Build and Deploy Pages

on:
  push:
    branches: ["master"]
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: "3.11"
      - uses: actions/configure-pages@v5
      - name: Install mdwiki
        run: pip install mdwiki
      - name: Build site
        run: mdwiki_exec ./post ./dist
      - uses: actions/upload-pages-artifact@v3
        with:
          path: ./dist

  deploy:
    needs: build
    runs-on: ubuntu-latest
    environment:
      name: github-pages
    steps:
      - id: deployment
        uses: actions/deploy-pages@v4

Develop with uv

uv sync
uv run mdwiki_exec ./post ./dist
uv build

Publish to PyPI:

git tag -a v0.3.3 -m "Release v0.3.3"
git push origin master v0.3.3

Pushing a new v* tag triggers the bundled GitHub Actions release workflow, which builds the package with uv and publishes it to PyPI.

Notes

  • CNAME is optional.
  • The bundled default theme is stored under mdwiki/templates/default.
  • mdwiki_exec is the supported public CLI entrypoint.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mdwiki-0.3.3.tar.gz (33.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mdwiki-0.3.3-py3-none-any.whl (35.6 kB view details)

Uploaded Python 3

File details

Details for the file mdwiki-0.3.3.tar.gz.

File metadata

  • Download URL: mdwiki-0.3.3.tar.gz
  • Upload date:
  • Size: 33.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mdwiki-0.3.3.tar.gz
Algorithm Hash digest
SHA256 ee2d53d6d5a40211a7f7e64dd3f9c0671b5e339063347b7964e461776c9c0076
MD5 15a2fd1e7a8c48645dfd8c5f0ec08fca
BLAKE2b-256 4be3458cf968f9882b863763a9698b4909fe89d36204d7e8443d416b0667735f

See more details on using hashes here.

File details

Details for the file mdwiki-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: mdwiki-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mdwiki-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 058579d52449dced128b5236a8940c311aac08adefc98906cb4edc102850b3d2
MD5 d333d40779dbe22be8f228c3750a6a53
BLAKE2b-256 c06cca5597e79aa3375587071e06cf8b00d71389453d177f203f3e7e62408fbc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page