-
Notifications
You must be signed in to change notification settings - Fork 50
[Bug] The table is broken, after adding url with exclamation mark #322
Open
Description
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:
┌───────────┐ │ │ └───────────┘