Text Helper Action Block
The Text Helper Action Block provides comprehensive text manipulation capabilities including concatenation, search and replace, splitting, markdown/HTML conversion, HTML stripping, and URL-safe slugification.
No authentication required. All text operations run locally.
Supported Actions
Concatenate
Joins multiple text strings with an optional separator.
Replace
Replaces text using plain text or regex patterns. Supports replacing all instances or just the first match.
Split
Splits text by a delimiter into an array of strings.
Find
Searches for text using plain text or regex. Returns the match and its position.
Markdown to HTML
Converts Markdown content to HTML. Supports vanilla, original, and GitHub flavors.
HTML to Markdown
Converts HTML content to Markdown format. Automatically removes script tags.
Strip HTML
Removes all HTML tags from content, returning plain text.
Slugify
Converts text into a URL-friendly slug (e.g., "Hello World" becomes "Hello-World").
Use Cases
- Formatting data before sending emails or messages
- Parsing and transforming webhook payloads
- Converting content between Markdown and HTML for different platforms
- Cleaning HTML content from web scraping
- Generating URL-safe slugs for content management
- Splitting CSV-like data into arrays for processing