Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

telegramify-markdown

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

telegramify-markdown - npm Package Compare versions

Comparing version 1.0.0-beta.1 to 1.0.0

2

package.json
{
"name": "telegramify-markdown",
"version": "1.0.0-beta.1",
"version": "1.0.0",
"description": "Convert markdown into Telegram-specific markdown",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,1 +0,42 @@

Description 1
# Telegramify-Markdown
[![CircleCI](https://circleci.com/gh/skoropadas/telegramify-markdown.svg?style=svg)](https://circleci.com/gh/skoropadas/telegramify-markdown)
Telegramify-Markdown is a Markdown
to [Telegram-specific-markdown](https://core.telegram.org/bots/api#formatting-options) converter, based
on [Unified](https://github.com/unifiedjs/unified) and [Remark](https://github.com/remarkjs/remark/).
## Install
```bash
npm install telegramify-markdown
```
## Usage
```js
const telegramifyMarkdown = require('telegramify-markdown');
const markdown = `
# List of items
* item 1
* item 2
* item 3
[here is an example.](https://example.com)
`;
telegramifyMarkdown(markdown);
/*
*List of items*
• item 1
• item 2
• item 3
[here is an example\.](https://example.com)
/
*
```
[MIT Licence](LICENSE)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc