Markdown → PDF
Get PDF
Markdown Editor
Upload
Hide Preview
# Markdown to PDF Converter ## Introduction This is a **professional** Markdown to PDF converter that supports: - **KaTeX** math rendering: $E = mc^2$ - **Mermaid** diagrams - **Code highlighting** - **Table of contents** with page numbers - **Custom themes** and styling ## Format Supports - **Bold text** - *Italic text* - `Inline code` - [Links](https://markdown-to-pdf.org/) ## Mathematical Expressions Inline math: $\sum_{i=1}^{n} x_i = x_1 + x_2 + \cdots + x_n$ Block math: $$\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}$$ ## Code Example ```javascript function fibonacci(n) { if (n <= 1) return n; return fibonacci(n - 1) + fibonacci(n - 2); } ``` ## Mermaid Diagram ```mermaid graph TD A[Start] --> B{Is it working?} B -->|Yes| C[Great!] B -->|No| D[Debug] D --> B ``` ## Table Example | Feature | Supported | Notes | |---------|-----------|-------| | KaTeX | ✅ | Math rendering | | Mermaid | ✅ | Diagrams | | Code | ✅ | Syntax highlighting | | TOC | ✅ | Auto-generated | ## Conclusion This converter provides publication-quality PDF output with professional formatting and advanced features.
Preview
default theme