html-to-slack
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

HTML to Slack

version

A module to convert HTML strings to Slack blocks.

Installation

To install the package, use npm:

npm install html-to-slack

Or yarn:

yarn add html-to-slack

Usage

Example

import htmlToSlack from 'html-to-slack';

const html = `
  <h1>List of Items</h1>
  <ul>
    <li>First item</li>
    <li>Second item with a <a href="http://example.com">link</a></li>
    <li>Third item<ul><li>Nested item 1</li><li>Nested item 2</li></ul></li>
  </ul>
  <h2>Code Block Example</h2>
  <pre><code>function helloWorld() { console.log("Hello, world!"); }</code></pre>
`;

const blocks = htmlToSlack(html);
console.log(blocks);

Contributing

We welcome contributions! Here are some ways you can help:

  1. Report bugs: If you find a bug, please open an issue.
  2. Suggest new features: If you have a feature request, please open an issue.
  3. Submit pull requests: If you want to contribute code, please submit a pull request.

Before submitting a pull request, please make sure to:

  • Fork the repository and create your branch from main.
  • Run npm install or yarn install to install dependencies.
  • Run the tests with npm test or yarn test to ensure all tests pass.
  • Add tests to cover your changes.
  • Ensure your code lints with npm run lint or yarn lint.

License

This project is licensed under the GPL-3.0 License. See the LICENSE file for more details.

Readme

Keywords

Package Sidebar

Install

npm i html-to-slack

Weekly Downloads

58

Version

0.2.0

License

GPL-3.0

Unpacked Size

72.5 kB

Total Files

33

Last publish

Collaborators

  • matteodf