markdown

n8n custom node to convert Markdown to HTML

Package Information

Downloads: 41 weekly / 60 monthly
Latest Version: 0.1.0

Documentation

n8n-nodes-markdown

Convert Markdown to HTML in n8n.

Features

  • Direct text input or read from an incoming item field
  • Configurable output field (default: html)
  • Options: linkify, breaks, allow raw HTML, typographer

Install

  1. Build the package
npm install
npm run build
  1. Install into your n8n instance as a community package.
  • Desktop: Settings → Community Nodes → Install → path/to/this/folder or published name
  • Self-hosted: set N8N_COMMUNITY_PACKAGES or use the UI to add the package name

If installing from source, you can npm pack this folder and then provide the tarball to n8n.

Usage

  • Add the node “Markdown to HTML” to a workflow.
  • Choose Source:
    • Direct Text: provide Markdown inline
    • Input Field: specify the field name (e.g. markdown) in incoming items
  • The node writes the generated HTML to the chosen Output Field (default html).

Development

  • Edit source in src/
  • Build to dist/ with npm run build

Notes

  • This node uses markdown-it for conversion.
  • n8n-workflow and n8n-core are peer dependencies provided by n8n at runtime.

Discussion