How to write a multi-line strings in custom function?
I want to use custom function to send some notifications.
text = "Line 1\n" + "Line 2\n" + "Line 3";
info text;
Will output
Line 1
Line 2
Line 3
But in SDP custom functions.
I will output
Line 1\nLine 2\nLine 3
How to do it in SDP? Thanks.