-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
GitHub Copilot edited this page May 12, 2026
·
2 revisions
mdedit.io needs no installation and no account. This guide gets you writing in under 2 minutes.
Open mdedit.io in your browser. That's it — the editor loads immediately and your documents are saved in the session.
git clone https://github.com/MatthiasHertel21/mdedit.git
cd mdedit
cp .env.example .env
docker compose up -dOpen http://localhost:3210 in your browser.
Check that it's running:
curl -fsS http://localhost:3210/health- Type Markdown in the left editor pane
- See the live preview update on the right
- Navigate long documents via the Outline tab
- Export as PDF or DOCX via the Share menu
---
title: "My First Document"
author:
- Your Name
date: 2026-01-15 # use today's date
preset: scientific
---
# Introduction
This is my first document in mdedit.io.
## Background
Write your content here. Use **bold**, _italic_, and:
- Bullet lists
- For structure
## Conclusion
Export this as a PDF via the Share menu.Paste preset: scientific (or compact or literary) into the YAML front matter and watch the preview update instantly. See Layout Presets for details.
- Open the Share menu (top right)
- Click Download PDF
The PDF uses the layout preset from your front matter.
Add an API key to .env (Groq has a free tier):
GROQ_API_KEY=your_groq_api_key_hereThen restart:
docker compose up -d --force-recreateOpen the AI panel with Alt+Space and type your request in plain language.
- Markdown Reference — full syntax reference
- Layout Presets — scientific, compact, literary
- Citations and References — BibTeX / CSL citation support
- AI API Configuration — set up AI with your own key
- Docker Setup — advanced Docker configuration