I’m making a sortable desk in a customized module. If I put Drupal Developer complete hyperlink as a part of Drupal Developer row data, Drupal Developer URL doesn’t come out proper.
I attempted Drupal Developer following code.
array( 'knowledge'=>array( '#title' => $entry['name'], '#sort' => 'hyperlink', '#url' => $entry['link_url'], ) )
I additionally tried what instructed on https://www.drupal.org/node/745272, which describes do it for Drupal 7.
I additionally tried this code.
$rows[] = array( array( 'knowledge' => array( 'identify' => new FormattableMarkup('<a href=":hyperlink">@identify</a>', [':link' => $entry['link_url'], '@identify' => $entry['name']]) ) ) );
Neither shows something.
How do I obtain this for Drupal 8?