Hi,
I've been working on this for a day and couldn't figure this out. I read all the post from the forum and cannot find a single post that can help me.
I have a multiline column called "Comments" in SPO list, it is also set to plain-text, it is taking input from a PowerApp.

Then I want to pass this data to an email. If I use "Send an Email" the format comes out right, but I want to use HTML. but when I do, I get everything outputs on one line:
---------------------------------
"Hello, Please help to look after this guy Thank you Regman"
---------------------------------
I tried simply adding an </br> after select "Comments" as dynamic content does not work.
Then I tried to do this:

it gives me:
---------------------------------
Hello%2C%0A%0APlease%20help%20to%20look%20after%20this%20guy%0A%0AThank%20you%0A%0ARegman
---------------------------------
I can replace the %0A with </br>,
uriComponentToString(replace(uriComponent(body(triggerBody()?['Comments'])),'%0A','</br>'))
However, as expected, it does the carriage returns but I still have all the other gibberish in the line:
---------------------------------
Hello%2C
Please%20help%20to%20look%20after%20this%20guy
Thank%20you
Regman
---------------------------------
Am I even on the right track guys? could you help me?