newlines from string output coming from datapill is lost when HTML used in a worknote field from a flow actionDescriptionnewlines from string output coming from datapill is lost when HTML used in a worknote field from a flow actionSteps to Reproduce create action where SSH step is usedrun command; df - kon external serveruse the step's output on incident's worknote field using the following:<div style="background: #EBF4FA;overflow:auto;width:1200;border:solid black;border-width:.2em .2em .2em .8em;padding:.2em .6em;white-space: pre-wrap;"><pre><small><<<<insert_datapill_here>>>></small></pre></div>Expected Behavior: the formatting of the command output should be intact (tabs, spaces, newlines)Unexpected Behavior: the datapill output shows all in one continuous single lineWorkaround- use inline scripting, to add the HTML tag <br> at the end of each line from the action's output: var lines = fd_data._1__snc_custom_action_linux_ssh.termoutput.split('\n');var htmlContent = lines.map(function(line){return line + ' <br> '});return '<div style="background: #EBF4FA;overflow:auto;width:1200;border:solid black;border-width:.2em .2em .2em .8em;padding:.2em .6em;white-space: pre-wrap;"><pre><small>' + htmlContent +'</small></pre></div>';Related Problem: PRB1489740