I need to insert a multiline cell with module excel4node, in documentation I didn't found anything about this.
I tried to insert the escape sequence "\n"
but it didn't work. This is my code:
var xl = require('excel4node');
var wb = new xl.Workbook();
var ws = wb.addWorksheet('Sheet 1');
ws.cell(1, 1).string('first line \n second line');
And this is the result inside the cell:
first line \n second line
Somebody knows how it's possible to insert a multiline cell? Which char must I use?