Truncated hrefs turn everything that follows into a link. In this reproduction example, the third table row is included because it prevents the href from the first row from ruining the entire terminal window.
constTable=require('cli-table3');consttable=newTable({colWidths: [10],style: {border: [],head: []},});consthref='http://example.com';table.push([{content: 'looooooooooooong', href }]);table.push([{content: 'not href'}]);table.push([{content: 'short', href }]);console.log(table.toString());
Truncated hrefs turn everything that follows into a link. In this reproduction example, the third table row is included because it prevents the href from the first row from ruining the entire terminal window.