📤 Export Guide NEW FEATURES!

Master exporting to PDF, Word, and HTML with full formatting preservation

✨ NEW: Export to Word with Images!

MarkStudio Pro now includes full image support when exporting to Word documents (.docx). Your images will appear exactly where you placed them in your markdown document, with proper formatting and sizing.

This works with:

📹 Watch: Export to Word Demo

See how to export your markdown documents to Word with perfect formatting preservation.

Export Formats

📄
PDF Export
High-quality PDFs with embedded images, math equations, and syntax highlighting
📝
Word (.docx)
Fully formatted Word documents with images, tables, and styled text
🌐
HTML Export
Standalone HTML files with inline CSS and embedded assets

How to Export

Using the Toolbar

  1. Open your markdown document in MarkStudio Pro
  2. Click one of the export buttons in the toolbar (HTML, PDF, or Word)
  3. Select save location and filename
  4. Click Save

Keyboard Shortcuts (Fastest Method!)

These shortcuts immediately open the save dialog for the chosen format - no extra clicks needed!

Working with Images

Adding Images to Your Document

There are two ways to add images that will export correctly:

# Method 1: Markdown syntax
![Diagram showing the process](images/diagram.png)

# Method 2: HTML tags
<img src="images/photo.jpg" alt="A beautiful photo">
💡 Pro Tip: Use relative paths (like images/photo.png) rather than absolute paths for better portability. Store your images in the same folder as your markdown file or in a subfolder.

Image Path Resolution

MarkStudio Pro intelligently resolves image paths:

Image Sizing in Word Export

By default, images are exported at 4 inches wide in Word documents. They maintain their aspect ratio automatically.

📐 Custom Sizing: You can control image dimensions using HTML attributes:

<img src="photo.jpg" width="600">

Export Limitations

📌 Free Trial Limits:

The free trial version includes 3 exports per format:

Purchase the full version from the Microsoft Store for unlimited exports in all formats.

Exporting Tables

Tables export beautifully to all formats. Here's an example:

| Product      | Price | Stock |
|--------------|-------|-------|
| Laptop       | $999  | 15    |
| Mouse        | $29   | 50    |
| Keyboard     | $79   | 32    |
✨ Tip: Tables with images work perfectly! You can embed images in table cells and they'll export correctly to Word.

Math Equations Export

LaTeX math equations export perfectly to PDF and Word with high-quality rendering:

Inline math: $E = mc^2$

Display math:
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$

The equations will render beautifully in all export formats.

Code Blocks Export

Syntax-highlighted code blocks export with proper formatting:

```python
def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)
```

Troubleshooting

Images Not Appearing in Export

⚠️ Common Issues:

Large Documents Performance

For documents with 50+ images or 100+ code blocks:

Word Document Formatting

If your exported Word document formatting looks different:

Best Practices

  1. Organize your images: Keep images in a subfolder (e.g., images/ or assets/) next to your markdown file
  2. Use relative paths: This makes your documents portable across different computers
  3. Test your export: Before creating a large document, export a small test to verify your images appear correctly
  4. Optimize image sizes: Large images (>5MB) can slow down export. Resize them before adding to your document
  5. Save before exporting: Always save your document before exporting to ensure all changes are included
🎯 Pro Tip: Use keyboard shortcuts for the fastest export experience! Press Ctrl+Shift+W to instantly export to Word with images, or Ctrl+Shift+P for PDF. These shortcuts skip the format selection dialog and go straight to the save location.