v1.0.0
This commit is contained in:
@@ -26,8 +26,8 @@ function htmlTableToString(table: HTMLTableElement) {
|
||||
"\n" + Array(lineSeparationSize).fill("-").join("") + "\n";
|
||||
|
||||
const mappedTab = tab.map((line) => {
|
||||
const mappedLine = line.map((content, index) =>
|
||||
content.padEnd(maxColumnsLength[index], "\u00A0")
|
||||
const mappedLine = line.map(
|
||||
(content, index) => content.padEnd(maxColumnsLength[index], "\u00A0") //for no matching with \s
|
||||
);
|
||||
return "|" + mappedLine.join("|") + "|";
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user