Skip to content
Snippets Groups Projects
Commit 6d840f4f authored by echicken's avatar echicken
Browse files

Remove whitespace.

parent 30c02c4d
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,7 @@ function table(data, line_color, heading_color, cell_color, width) {
for (var row = 0; row < data.length; row++) {
nr = 0;
for (var col = 0; col < data[row].length; col++) {
data[row][col] = skipsp(truncsp(data[row][col]));
arr = truncsp(word_wrap(data[row][col], widths[col])).split(/\n/);
// If the cell has to wrap
if (arr.length > 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment