- Home
- Resources
- Integrations
- Markdown
Markdown Make integrationAutomate Markdown with Make.
Need clean HTML from Markdown text, or Markdown from an HTML page? The Markdown Make integration gives you 2 converter modules, one for each direction. This guide shows where each one fits and walks you through a first scenario, from the empty editor to switching it on.
Verified Trustpilot reviews · AI, automation & growth agency
What does the Markdown Make integration do?
The Markdown Make integration is a built-in converter inside Make. You place one of its modules in a scenario, the automation you build in Make, and it rewrites the text it receives: Markdown becomes HTML, or HTML becomes Markdown. Each module is one brick of that scenario, and here both bricks are transformers, so they change data rather than read or write an account.
Publish notes as a web page. Writers often draft in Markdown because it stays readable. Put Markdown to HTML after the module that fetches the draft, and the next module receives HTML that a website or an email tool can display.
Archive web content as plain text. Going the other way, HTML to Markdown takes a page or an email body and gives back lighter Markdown, easier to store in a notes app or a text file and easier to read by eye.
Clean up what a scraper returns. When another app hands you raw HTML, for example the AI Scraper by Parsera Make integration, converting it to Markdown before the next step keeps the headings and links while dropping the markup.
What the app does not do: it has no trigger, so it never starts a scenario on its own, and it has no Make an API Call module. It only converts. If you also use n8n, there is a Markdown n8n integration page too, and the n8n vs Make comparison helps you place both tools.
How do you add Markdown to a scenario?
- 01
Search for the app
In the editor, click the + where you want the conversion, type Markdown in the search box and open the app. Make shows its two modules, HTML to Markdown and Markdown to HTML.
- 02
Pick the direction
Choose the module that matches the text you already have. The Markdown documentation lists no prerequisite, so there is no account of your own to prepare before this step.
- 03
Save any connection Make requests
If a Create a connection button appears, follow Make's usual path: click it, give the connection a name if you like, then click Save. A connection is an account linked to Make once and reused by every module of that app.
Your first scenario with Markdown
GoalWhen another app delivers a Markdown text, Make turns it into HTML that the next step can publish or send.
- 01
Create the scenario
Open the Scenarios page, create a new scenario and click the + to add the first module. Since Markdown cannot start a flow, this first brick comes from the app that holds your text.
- 02
Add the source module
Search for that app, pick the module that returns your draft and click Create a connection if Make asks for one. Fill its fields; Make lists what it can read once the account is linked.
- 03
Add Markdown to HTML
Click the + on the right of the source module, search Markdown and pick Markdown to HTML. Map the text coming from the previous module into it, so every bundle (one item passing between modules) gets converted.
- 04
Test with Run once
Click Run once. Make runs the scenario a single time and shows the bundles each module received. Open the output of Markdown to HTML and check that the headings and links came through as HTML tags.
- 05
Schedule and switch on
Open the clock on the first module. A new scenario runs every 15 minutes by default, and the Free plan allows 15 minutes at the shortest. Pick your schedule, save, then switch the scenario on.
What the Markdown modules do
Markdown gives you 2 modules. For each one: what it does for you, when to reach for it, and what to watch out for.
HTML to Markdown
TransformerIn Make“Transforms HTML into Markdown.”
Hand this module a piece of HTML and it returns the same content written as Markdown, so a web page or an email body becomes light text you can read without a browser.
Markdown to HTML
TransformerIn Make“Transforms Markdown into HTML (SVG, MathML).”
You get HTML ready for display: the module reads Markdown text and outputs the matching tags, and the documentation mentions SVG and MathML among what it can produce.
Need help automating Markdown with Make?
A person reads every message.