bytechefhq / bytechef

Open-source, low-code, extendable API integration & workflow automation platform. Integrate your organizations or your SaaS product with any third party API
https://www.bytechef.io
Other
216 stars 50 forks source link

TextHelper - HTML to Markdown action #1526

Open monikakuster opened 1 month ago

monikakuster commented 1 month ago

Implement HTML to Markdown action for Text Helper component.

The HTML to Markdown action converts HTML content into Markdown format.

Example: HTML Input:

  <h1>Title</h1>
  <p>This is a <strong>paragraph</strong> with a <a href="https://example.com">link</a>.</p>
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
  </ul>

Markdown output:

  # Title

  This is a **paragraph** with a [link](https://example.com).

  - Item 1
  - Item 2
Brijeshthummar02 commented 1 month ago

hello there, @monikakuster i can work on this assign me the task also show me the complete path where to make file and all.

monikakuster commented 1 month ago

@Brijeshthummar02, please read our CONTRIBUTING.md, especially this part.

New actions should be implemented inside this directory. Actions that are already implemented for the TextHelper component may be helpful.

monikakuster commented 1 month ago

Hey @Brijeshthummar02 .

Here is the detailed description of the structure of every component.

And finally, to test your action, here is the guide.

monikakuster commented 4 days ago

@Brijeshthummar02 any updates?