Select the desired file.
And enter the commands one by one
1.
Enter
2.
Enter
View attachment 4956610
View attachment 4956611
Command 1:
this.cells[1] = this.cells[0];
Transfers the text from the original to the initial
-----------------------------------------------------
Command 2:
const targetCellIndex = 1;
if (this.cells && this.cells.length > targetCellIndex && typeof this.cells[targetCellIndex] === 'string') {
let textToProcess = this.cells[targetCellIndex];
if (!textToProcess || textToProcess.trim() === "") {
return;
}
let processedText = textToProcess.split(/\s+/).join(' ').trim();
this.cells[targetCellIndex] = processedText;
} else {
}
Makes all lines in the column initial mono lines
---------------------------------------------------
Result:
View attachment 4956621
Information provided by: Alex(GOD)