Markdown to HTML Converter β Bulk
Pricing
from $0.001 / doc converted
Markdown to HTML Converter β Bulk
Convert Markdown to clean, styled HTML with GitHub-flavored tables, code highlighting and an optional full HTML document wrapper. For emails, CMS content and static sites.
Pricing
from $0.001 / doc converted
Rating
0.0
(0)
Developer
hiper soft
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Convert Markdown to clean, styled HTML β with GitHub-flavored tables, code blocks and an optional full HTML document wrapper. For emails, CMS content, static sites and automation workflows (n8n, Make).
What it does
- Converts Markdown β HTML (GFM tables, strikethrough, code fences).
- Optional full styled HTML document (with CSS) or a bare fragment.
- Batch mode for many documents at once.
Use cases
- Email / newsletters β turn Markdown into ready-to-send HTML.
- CMS / static sites β render Markdown content to HTML.
- Automation β a MarkdownβHTML step in an n8n/Make workflow (e.g. after an LLM writes Markdown).
Input
{ "markdown": "# Hello\n\nSome **bold** text and a [link](https://apify.com).", "fullDocument": false, "gfm": true }
| Field | Type | Description |
|---|---|---|
markdown | string | Markdown to convert. |
markdowns | array | Optional batch of documents. |
fullDocument | boolean | Wrap in a styled HTML page. |
title | string | Page title (full-document mode). |
gfm | boolean | GitHub-flavored Markdown. |
Output
{ "chars": 63, "fullDocument": false, "html": "<h1>Hello</h1>\n<p>Some <strong>bold</strong> text...</p>", "htmlUrl": "https://api.apify.com/v2/key-value-stores/.../records/output-0001.html" }
Output schema
| Field | Type | Description |
|---|---|---|
chars | integer | Input Markdown length. |
htmlUrl | string (URL) | Link to the HTML file. |
FAQ
Fragment or full page? Set fullDocument for a complete styled HTML document, or leave it off for an embeddable fragment.
Can I use it in n8n? Yes β run it from the Apify node, or via integrations and the Apify API.
Notes
Original clean-room implementation.