Markdown
Preview

Welcome to mdShare

A server-side Markdown editor with shareable links backed by SQLite.

Features

  • Share: Save your document and get a unique link
  • Update: Edit a shared document at any time using its link
  • Export: Download as PDF, RTF, Word (.doc), Markdown, or HTML
  • Mermaid: Full diagram support
  • Syntax highlighting: Beautiful code blocks

Code Example

async function fetchDoc(hash: string) {
  const res = await fetch(`/api/documents/${hash}`);
  return res.ok ? res.json() : null;
}

Mermaid Diagram

Tables

FormatDescription
PDFPrint-ready document
RTFUniversal rich text
WordMicrosoft Word (.doc)
HTMLStandalone web page

Use *** on its own line to insert a page break in PDF/Word exports.