A solution to quickly and effortlessly previewing Markdown files directly in your browser.
Powered by the Astro development server within a Docker container, this tool enables seamless live previews of Markdown files right on your local system. With the aesthetic touch of github-markdown-css, your previews are not only functional but visually appealing.
Navigate effortlessly through a collection of Markdown files, thanks to Astro's content-collection feature. Experience the convenience of a simple homepage, displaying a comprehensive list of all available files, allowing for easy access and swift transitions.
| Homepage | Preview |
|---|---|
![]() |
![]() |
Only content collections are allowed inside the src/content directory. This directory cannot be used for anything else. A collection entry is any piece of content stored inside of your content collection directory. Entries can use content authoring formats including Markdown (.md) and MDX (.mdx using the MDX integration) or as one of two supported data formats: YAML (.yaml) and JSON (.json). We recommend using a consistent naming scheme (lower-case, dashes instead of spaces) for your files to make it easier to find and organize your content, but this is not required. You can also exclude entries from being built by prefixing the filename with an underscore (_).
edit the path to your collection under volumes in docker-compose.yml
version: "3.6"
services:
astro:
build: .
image: toabr/markdown-preview
ports:
- "127.0.0.1:3000:4321"
restart: unless-stopped
volumes:
- /your/collection:/app/src/content/md # Change me!and run:
docker compose up -dnow open http://localhost:3000 in the browser
first build the image:
docker build -t toabr/mdp .then cd into your markdown folder and run a container:
docker run --rm -it \
-p 3000:4321 \
-v $(pwd):/app/src/content/md \
toabr/mdpor detached:
docker run -d --name Markdown-Preview \
-p 3000:4321 \
-v $(pwd):/app/src/content/md \
toabr/mdpand open http://localhost:3000 in the browser
- single file solution
- make subfolders work
- integrate
frontmatter - move /app/src/content/md to /md
- add a theme switch button

