npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@frabbit/n8n-nodes-telegramify-markdown

v0.1.1

Published

Convert Markdown to Telegram-compatible format

Readme

@frabbit/n8n-nodes-telegramify-markdown

This is an n8n community node that converts Markdown text to Telegram-compatible format using the telegramify-markdown package.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Features

  • Convert Markdown text to Telegram-compatible format
  • Select which input field to process
  • Support for expressions to dynamically select fields
  • Configurable handling of unsupported tags (keep, escape, or remove)
  • Returns only the converted text as output

Operations

This node performs a single operation: Convert Markdown to Telegram format

Parameters

  • Field Name (required): The name of the input field containing Markdown text to convert. You can use expressions like {{ $json.text }} to dynamically select the field.
  • Mode (optional): Strategy for handling unsupported tags:
    • Keep (default): Ignore unsupported tags
    • Escape: Escape unsupported symbols for unsupported tags
    • Remove: Remove unsupported tags completely

Credentials

This node does not require any credentials.

Compatibility

  • Minimum n8n version: 1.0
  • Tested with n8n version 1.0+

Usage

Basic Example

  1. Add the "Telegramify Markdown" node to your workflow
  2. Connect a node that outputs data with a field containing Markdown (e.g., a "Set" node or API response)
  3. In the "Field Name" parameter, enter the name of the field containing Markdown text (e.g., text or content)
  4. Select the desired "Mode" for handling unsupported tags
  5. The node will output only the converted text in the text field

Using Expressions

You can use n8n expressions to dynamically select the field:

{{ $json.markdown }}

This is useful when the field name varies or comes from another node's output.

Example Workflow

Manual Trigger → Set (add markdown field) → Telegramify Markdown → Telegram Node
  1. Manual Trigger: Start the workflow
  2. Set Node: Adds a field content with Markdown text like:
    # Header
    > Blockquote
    <div>HTML in div</div>
  3. Telegramify Markdown Node:
    • Field Name: content
    • Mode: escape
    • Outputs: Converted text compatible with Telegram
  4. Telegram Node: Sends the converted message

Output Format

The node returns only the converted text:

{
  "text": "*Header*\n\n\\> Blockquote\n\n<div\\>HTML in div</div\\>"
}

Resources

Version history

0.1.0

Initial release with basic Markdown to Telegram conversion functionality.