I have a script on Google app script. This script find a data simply.
my code :
var content=this.spreadsheet.getSheetByName("sheet1").getRange("C1:C26").getValues();
this.summary = contents[4][0];
I find my data , no prob but , my data has line breaks and my webpage on Google sites shows the result without line breaks.
It's a prob of convert with GetValue () ?
my data on a Cell of Spreadsheet :
blabab---
bla
abla---
bla
the result on a Google Site
blabab---bla abla---bla
\n
? – Shred