tgmkdown

1.0.2 • Public • Published

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)


Readme

Keywords

none

Package Sidebar

Install

npm i tgmkdown

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

39.3 kB

Total Files

7

Last publish

Collaborators

  • malacca