HTML sent to notion from make

Hi,

When I send data from a website form to notion, I use make to do some actions.

But regarding text fields/area, HTML tags are sent to notion so result displayed is like this on notion text property:

< p >line 1</ p>
< p >line 2</ p>

Etc …

I’m looking for an elegant solution to display text.

  1. send all texts with HTML tags to notion, but : instead of inserting data inside a text property (where, I assume, HTML cannot be translated), create a sub-page inside main page created before on notion, and insert HTML text with blocks.
    If yes, how to do that with make ?

Or

  1. remove all HTML tags before sending them to notion. If yes, how to do that with make ?

Anyone has some advice ?

Thanks
L.

You can try using the built-in Make function stripHTML() - String functions - Help Center

ok thanks I will try this.