@clearfeed-ai/html-to-mrkdwn-ts
v2.0.2
Published
Fast HTML to Slack flavored mrkdwn
Downloads
2,399
Readme
html-to-mrkdwn-ts
html-to-mrkdwn-ts is a fast HTML to Slack flavored markdown converter.
Install
<yarn|npm|pnpm> html-to-mrkdwn-ts
Usage
import htmlToMrkdwn from 'html-to-mrkdwn-ts'
const html = `
<div>
<h1>A Title</h1>
<a href="https://foo.bar">
<img src="https://foo.bar/baz.jpg" alt="baz" />
</a>
</div>`
htmlToMrkdwn(html)
// {
// image: 'https://foo.bar/baz.jpg',
// text: '*A Title*\n\n<https://foo.bar|baz>'
// }
Options
under the hood html-to-mrkdwn-ts uses node-html-markdown so you can pass an additional options as a second argument:
htmlToMrkdwn(html, { strongDelimiter: '**' })
see available options