Convert Markdown to HTML
The "Convert Markdown to HTML" step allows you to transform content written in Markdown syntax into properly formatted HTML. This is useful for converting simple text-based documents into web-ready content that can be published on websites, blogs, or integrated into content management systems.
How to Configure the Convert Markdown to HTML Step
Markdown Content: Enter the Markdown content that you want to convert to HTML.
Output Format
The Convert Markdown to HTML step returns a string containing the HTML version of your Markdown input:
<h1>Sample Heading</h1>
<p>This is a paragraph with <strong>bold</strong> and <em>italic</em> text.</p>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
<p>Here's a <a href="https://www.example.com">link</a>.</p>
Last updated
Was this helpful?