Mail + Trello integration - <br> and html expressions visibility

Hello everyone,

As in a topic, I did some mail with Trello integration. An e-mail looks good:

mail trello integration

but the result of the card looks like above, it shows unintented html expressions.

How should I set the workflow to remove those '<br>'s? Thank you in advance.

Hi @foshigh ,

First off, welcome to the Pipedream community. Happy to have you!

It sounds like perhaps you’re trying to remove the HTML tags from the output of one of your steps in your workflow?

If you just want to outright remove the <br/> and other HTML tags, the Helper app has an HTML to Markdown prebuilt action.

This will remove all HTML tags and replace them with Markdown instead.

But if you’d like to replace the <br/> tags, you can use the .split() method in a Node.js step to split the string on those <br/> tags and then .join() with a newline character instead (\n).

oh, thank you so much for the warm welcome and the response - it seems to solve my problem. I am new here so can you tell me where can i find Helper app?

Sure thing, when you add a new step to your workflow just search for Helper in the search bar to find the Helper app. Here’s a quick screenshot:

It worked. Thank you very much.

1 Like