If I merge multiple cells in a Jupyter notebook, there is a blank line between the code from each cell.
Can I merge cells without this blank line?
If I merge multiple cells in a Jupyter notebook, there is a blank line between the code from each cell.
Can I merge cells without this blank line?
mergeCells
toMerge
newModel.value.text = toMerge.join('\n\n');
const toMerge: string[] = [];
'\n'
in the .join()
, therefore the answer to Can I merge cells without this blank line? is no, unless you do a PR for the project, change the desired line, compile and run it on your system.