How do I insert line breaks into Evaluator strings?
In this example, only the first line works, and only for the log. The clipboard won't contain a proper line break.
=tmp="line1" + "<br>" + "line2"
// =tmp="line1" + "\n" + "line2"
// =tmp="line1" + "\r" + "line2"
// =tmp="line1" + "\r\n" + "line2"
// =tmp="line1" + Chr(13) + "line2"
@output:{=tmp=}
Clipboard SET={=tmp=}
The background: I want to use the Evaluator to enhance Clipboard COPYNAMES. If the Evaluator could be added there, that'd be cool