user40981
0
Q:

drupal 8 HTML in type link

use Drupal\Core\Url;

$rendable_link = [
  '#type' => 'link',
  '#title' => $this->t('Link title'),
  '#url' => Url::fromRoute('YOUR_ROUTE'),
];
0
$link = [
  '#type' => 'link',
  '#title' => [
      '#type' => 'inline_template',
      '#template' => '{{ title }} <span class="icon-right-arrow"></span>',
      '#context' => [
        'title' => $title
      ],
  ],
  '#url' => Url::fromRoute('user.pass'),
];
0

New to Communities?

Join the community