How to use them
- Add a variable — Give it a label, key, and select the source field to transform.
- Add transformation rules — Each rule modifies the output of the previous one. Order matters.
- Reference in content — Use
{{channel.your_key}}in export templates or other formula-enabled fields.
Source fields
Description, Short Description, Product Name, Meta Title, Meta Description, Features.Transformation rules
| Rule | Parameters | What it does |
|---|---|---|
| Truncate | Max length (default: 150) | Cuts text to a maximum character count |
| Strip HTML | — | Removes all HTML tags, leaving plain text |
| Template | Template string | Wraps or reformats content using a custom template |
| Bullet Points | Max bullets (default: 5) | Converts text into a bullet-point list |
Use case examples
1. Amazon product description (bullet points)
Amazon listings work best with bullet-point feature lists, not long paragraphs.- Source: Description
- Rules:
- Strip HTML
- Bullet Points (max: 5)
- Truncate (500)
2. Google Shopping title
Google Shopping has a 150-character limit for product titles and benefits from structured naming.- Source: Product Name
- Rules:
- Template:
{{value}} - {{product.brand}} | {{global.company_name}} - Truncate (150)
- Template:
3. Marketplace plain-text description
Many marketplaces don’t support HTML in descriptions.- Source: Description
- Rules:
- Strip HTML
- Truncate (2000)
4. Social media product snippet
Short, punchy text for social media posts or feed ads.- Source: Short Description
- Rules:
- Strip HTML
- Truncate (100)
- Template:
{{value}}... Shop now!
5. Bol.com product description
Bol.com has specific character limits and prefers structured content.- Source: Description
- Rules:
- Strip HTML
- Truncate (1500)
6. Price comparison feed title
Price comparison sites need clean, attribute-rich product titles.- Source: Product Name
- Rules:
- Template:
{{value}} - {{product.brand}} - {{product.sku}} - Truncate (200)
- Template:
7. Email marketing description
Short, compelling text for email campaigns.- Source: Short Description
- Rules:
- Strip HTML
- Truncate (200)
- Template:
{{value}}\n\nOrder now at {{global.website_url}}
8. Internal catalog description
A clean, standardized version for internal use or PDF catalogs.- Source: Description
- Rules:
- Strip HTML
- Template:
{{product.sku}} — {{product.name}}\n\n{{value}}\n\nWeight: {{product.weight}} {{product.weight_unit}} | HS Code: {{product.hs_code}}
9. Amazon feature bullets from short description
Convert a short description into structured bullet points specifically for Amazon.- Source: Short Description
- Rules:
- Strip HTML
- Bullet Points (max: 5)
10. Webshop SEO meta description
Generate SEO meta descriptions optimized for search engines with a strict character limit.- Source: Description
- Rules:
- Strip HTML
- Truncate (155)
Tips
- Order matters. Strip HTML before truncating — otherwise you might cut in the middle of an HTML tag.
- Templates can reference any variable —
{{product.brand}},{{global.company_name}}, etc. Use{{value}}to reference the transformed content from the previous rule. - Create separate channel variables for each sales platform to handle their specific character limits and formatting requirements.

