tgmkdown
v1.0.2
Published
Telegram markdownv2 utilities
Downloads
144
Readme
tgmkdown
从 teleform 精简而来,仅保留了解析功能
const {mkdown, html} = require('tgmkdown');
let txt, str;
// from markdown string
txt = "*bold* blabla...";
const { text, entities } = mkdown.toEntities(txt);
// to markdownv2
str = mkdown.fromEntities(text, entities)
// to html
str = html.fromEntities(text, entities)
// from html string
txt = "<b>bold></b> blabla...";
const { text, entities } = html.toEntities(txt);
// to markdownv2
str = mkdown.fromEntities(text, entities)
// to html
str = html.fromEntities(text, entities)