Markdown Converter

Paste your Markdown below and choose an export option.

API Usage

You can also use our API to convert markdown programmatically. Here are some examples using cURL:

Convert to DOCX

curl -X POST -H "Content-Type: application/json" \
     -d '{"markdown": "# Hello World"}' \
     http://md.nixc.us/api/convert

Convert to HTML (Modern Template)

curl -X POST -H "Content-Type: application/json" \
     -d '{"markdown": "# Hello World", "format": "html", "template": "modern"}' \
     http://md.nixc.us/api/convert