Skip to content

v0.1.4

Choose a tag to compare

@ramdeoangh ramdeoangh released this 11 Jun 17:56

MD-PDF Exporter v0.1.4

Export Markdown files to PDF with Mermaid diagrams and local images — works in VS Code and Cursor.

What's new

  • MD Preview — Right-click any .md file → MD-PDF ExporterMD Preview to open a live preview panel beside the editor
  • Right-click submenuMD Preview and Export to PDF in Explorer and editor context menus
  • Keyboard shortcutsCtrl+Shift+M (preview), Ctrl+Shift+E (export PDF)
  • support.md — Troubleshooting and support documentation for users
  • Improved PDF export on Windows — Subprocess export for more reliable browser launch
  • Extension branding — Logo in exported PDFs and extension icon

Features

  • Export Markdown files to PDF with one click
  • Render mermaid flowcharts and diagrams as graphics (not raw code)
  • Embed local images from your project (![alt](./image.png))
  • Syntax-highlighted code blocks
  • GitHub-flavored Markdown styling
  • Configurable page size, margins, Mermaid theme, and output folder

Requirements

  • Google Chrome or Microsoft Edge (for PDF export)
  • Node.js on PATH recommended on Windows

Install

From VSIX (this release)

  1. Download pdfexporter-0.1.4.vsix from the assets below
  2. Open Cursor or VS Code → Extensions → ...Install from VSIX...
  3. Restart the editor

From Marketplace

Search MD-PDF Exporter by publisher ramdeoangh

Quick start

  1. Open a .md file
  2. Right-click → MD-PDF ExporterMD Preview or Export to PDF

Or use the Command Palette:

  • MD-PDF Exporter: MD Preview
  • MD-PDF Exporter: Export to PDF

Mermaid example

```mermaid
flowchart TD
    A[Open Markdown] --> B[MD Preview or Export PDF]
    B --> C[Diagrams rendered as graphics]
    

## Links

- [Support & troubleshooting](https://github.com/ramdeoangh/pdfexporter/blob/main/support.md)
- [Report issues](https://github.com/ramdeoangh/pdfexporter/issues)
- [Repository](https://github.com/ramdeoangh/pdfexporter)
```