Package Information
Downloads: 41 weekly / 60 monthly
Latest Version: 0.1.0
Available Nodes
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
- Build the package
npm install
npm run build
- Install into your n8n instance as a community package.
- Desktop: Settings → Community Nodes → Install →
path/to/this/folderor published name - Self-hosted: set
N8N_COMMUNITY_PACKAGESor 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/withnpm run build
Notes
- This node uses
markdown-itfor conversion. n8n-workflowandn8n-coreare peer dependencies provided by n8n at runtime.