n8n-nodes-html-to-text
v0.1.1
Published
n8n node to convert HTML content to plain text using html-to-text package
Maintainers
Readme
n8n-nodes-html-to-text
This is an n8n community node. It lets you use n8n-nodes-html-to-text in your n8n workflows.
n8n-nodes-html-to-text is a tool to convert HTML content to plain text, normally used for AI clean up.
n8n is a fair-code licensed workflow automation platform.
Installation Operations Compatibility Usage Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
- Convert HTML to Text: Converts any HTML input into plain text format.
Compatibility
Tested against n8n version 1.0.0+.
Usage
This node takes an input string containing HTML and outputs a clean plain text version.
Example of input data:
<p>The HTML editor allows users to create HTML templates in their workflows. The editor supports standard HTML, CSS in <code><style></code> tags, and expressions wrapped in <code>{{}}</code>. Users can add <code><script></code> tags to pull in additional JavaScript. n8n doesn't run this JavaScript during workflow execution.</p>Example of response data:
{
text: "The HTML editor allows users to create HTML templates in their workflows. The editor supports standard HTML, CSS in <style> tags, and expressions wrapped in {{}}. Users can add <script> tags to pull in additional JavaScript. n8n doesn't run this JavaScript during workflow execution."
}