Description: The table is broken if providing a hyperlink with a shebang (#!).
Code snippet:
const Table = require('cli-table3');
const table = new Table();
const href = 'http://example.com/!';
table.push([{ content: 'Text Link', href }]);
console.log(table.toString());
Output:
┌───────────┐
│ │
└───────────┘
