Markdown to HTML Converter β€” Bulk avatar

Markdown to HTML Converter β€” Bulk

Pricing

from $0.001 / doc converted

Go to Apify Store
Markdown to HTML Converter β€” Bulk

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

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

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 }
FieldTypeDescription
markdownstringMarkdown to convert.
markdownsarrayOptional batch of documents.
fullDocumentbooleanWrap in a styled HTML page.
titlestringPage title (full-document mode).
gfmbooleanGitHub-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

FieldTypeDescription
charsintegerInput Markdown length.
htmlUrlstring (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.