cli-table / cli-table3

Pretty unicode tables for the command line
MIT License
535 stars 44 forks source link

Hyperlink support for cells #292

Closed speedytwenty closed 2 years ago

speedytwenty commented 2 years ago

This PR adds support for hyperlinks using a very simple interface. This feature was requested in #73

table.push([
  // Specify the URL as the display text
  { href: 'http://example.com' }, 
  // Specify display text
  { href: 'http://example.com', content: 'Example text' },
]);

Link text is wrapped, truncated, etc. as usual but when the text of a cell spans multiple lines, each line is wrapped with the link.

PR includes:

The difference in functionality is not meaningfully demonstrable in markdown. Examine the (failing/passing) tests in Checks to inspect the differences.