In this post, we'll show you How to include html text inside a Drupal 8 generated link.
Question:
How to include html text inside a Drupal 8 generated link?
this is my code:
$link = Link::fromTextAndUrl($link_text, $url);
Solution:
if you need to pass any HTML tag in your link title you can use the following code:
use Drupal\Core\Link;
use Drupal\Core\Render\Markup;
$link_text = Markup::create('<span class="custom-title">' . $title . '</span>');
$link = Link::fromTextAndUrl($link_text, $url);