Skip to content

Instantly share code, notes, and snippets.

View kolay-v's full-sized avatar

kolay kolay-v

  • Russia, Rostov-on-Don
View GitHub Profile
@kolay-v
kolay-v / 1markdown.ts
Last active April 25, 2025 11:00
Markdown to telegram entities
import remarkMath from "npm:remark-math";
import remarkParse from "npm:remark-parse";
import { unified } from "npm:unified";
import { type MessageEntity } from "npm:grammy/types";
// @deno-types="npm:@types/mdast"
import type { RootContent } from "npm:mdast";
export function mdV2(markdown: string) {
const processor = unified().use(remarkParse).use(remarkMath);