<a>
element or the <button>
element is being used, the proper HTML attributes should be passed.
<a>
requires the href
attribute.<button>
requires the type
attribute.{% include '@bolt-elements-text-link/text-link.twig' with {
content: 'This text link has the "href", "target", and "id" attributes',
attributes: {
href: 'https://pega.com',
target: '_blank',
id: 'js-bolt-some-unique-id'
}
} only %}
<a href="https://pega.com" target="_blank" id="js-bolt-some-unique-id" class="e-bolt-text-link">This text link has the "href", "target", and "id" attributes</a>