Package Information
Downloads: 140 weekly / 140 monthly
Latest Version: 0.3.0
Author: jnymmt
Documentation
n8n-nodes-url2markdown
n8n custom node to convert URL to Markdown using Jina Reader API.
Features
- Convert any webpage URL to clean Markdown
- Uses Jina Reader API (free, no API key required)
- Supports timeout configuration
- Japanese language support
Installation
Community Nodes (Recommended)
- Go to Settings > Community Nodes in n8n
- Search for
n8n-nodes-url2markdown - Click Install
Manual Installation
cd ~/.n8n/nodes
npm install n8n-nodes-url2markdown
Usage
- Add the URL to Markdown node to your workflow
- Enter the URL you want to convert
- (Optional) Configure timeout in Options
- Execute the node
Output
{
"url": "https://example.com/article",
"markdown": "# Article Title\n\nArticle content...",
"contentLength": 1234
}
Options
| Option | Type | Default | Description |
|---|---|---|---|
| URL | string | - | URL to convert (required) |
| Timeout | number | 30 | Request timeout in seconds |
| Include Links | boolean | true | Include links in Markdown |
| Image Handling | options | include | How to handle images: include (keep), altText (replace with alt text), remove |
| Heading Style | options | atx | Heading style: atx (# Heading) or setext (underlined) |
| Code Block Style | options | fenced | Code block style: fenced (```) or indented |
| Include Frontmatter | boolean | false | Add YAML frontmatter with metadata (title, url, author, site, excerpt, date) |
License
MIT