TextHelper - HTML to Markdown action
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
hello there, @monikakuster i can work on this assign me the task also show me the complete path where to make file and all.
@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.
Hey @Brijeshthummar02 .
Here is the detailed description of the structure of every component.
And finally, to test your action, here is the guide.
@Brijeshthummar02 any updates?